1#Collecting The Input As A Variable:#
2name = input('Please enter your name: ')
3#Printing The Variable:#
4print(name)
5#Checking The Variable And Printing Accordingly:#
6if name == 'Joe':
7 print('Joe Mama')
1#basic user handling for begginers
2
3x = input("your question here") # when someone types something here that answer will be saved and be used for later
4
5# for example
6print(x)
1name = input("Enter your name: ")
2
3#Printing the variable (name)
4print("hello",name)