,

Python Getting Input from User

Python Getting Input from User


 var1 = input("Enter Your Name:")
 var2 = input("Enter Your Course:")
 print("Welcome to Aimtocode mr. : ",var1)
 print("You are learning : ",var2)


Output:

 Enter Your Name:Prayag
 Enter Your Course:Python 
 Welcome to Aimtocode mr. :  Prayag
 You are learning :  Python