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")

Comments

Some popular posts

Python Program that computes the net amount of a bank account based a transaction log from console input.