Python Program to input your name, class and age and print them
name=input('enter your name')
class=int(input('enter your class')
age=int(input('enter your age')
print(name,"is studying in",class,"and",age,"years old")
name=input('enter your name')
class=int(input('enter your class')
age=int(input('enter your age')
print(name,"is studying in",class,"and",age,"years old")
Comments
Post a Comment