Print your name | Python Program

Print your name in python language

Tips:

1.Use input statement.
2.Print input statement. 

Code: 

n=input("what is your name?")

print("Your name is",n) 

Output:

what is your name?

abc

Your name is abc

Comments

Post a Comment

Give your feedback!
DO NOT SPAM !!
NO THIRD PARTY PROMOTIONAL LINK !!!! (else comment will be deleted.)

Popular posts from this blog

Print name in a pattern | name as abbreviation | C-Program

Stone, Paper and Scissors game | Python Program