Exercise 1
Write a program in Python language that asks the user to enter their name and display their name with a welcome message!
Solution
1 2 3 4 5 6 7 8 |
# ask the user to enter their name name = input("Enter your name: ") print("Welcome: ", name) """ After execution: Enter your name: Farid Welcome: Farid """ |
Younes Derfoufi
CRMEF OUJDA
1 thought on “Solution Exercise 1: welcome message in python”