taking input from user and printing hello with the name in python
Answers
Answered by
1
Answer:
In Python, we can get user input like this: name = input("Enter your name: ") print("Hello", name + "!") The code above simply prompts the user for information, and the prints out what they entered in.
Similar questions