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
n=input("what is your name?")
print("Your name is",n)
what is your name?
abc
Your name is abc
Thank you sir
ReplyDelete