3) Input
Read a name from input and print a welcome message.
All Topics
Run Program
Python Code
name = input("Enter your name: ") print("Welcome,", name)
Program Input
Riya
Output