Exercise 1   Back to the list of exercises

Write a program in Python language that asks the user to enter their name and display their name with a welcome message!

Solution

name = input("Type your name : ")
print("Welcome : " , name)
Younes Derfoufi

Leave a Reply