Hello
In First session where we use name= input(who are you) command I am able to get who are you as output but when i am trying to input “name” in command and running nothing is coming. Please let me know how it will save value of name
Hi Akshit,
name = input(“Who are you?”)
print(“Hello!”, name)
You have to use print statement to get your output. Without print, no output is going to be displayed.
Thanks!