Input data
For a program to be useful it needs to get at least some information from the user. With this, the program can take actions that are relevant to the user, instead of generic actions, like printing "Hello world!".
You might provide additional data by passing strings these parameters to the program, or you could have the program ask you for data interactively.
name = "All Educators Blog page"
print("Hi, "+name+" visitor! ")
Then you see the output like below.
No comments:
Post a Comment
Your comment will taken into consideration.