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')
1name = input("What is your name?\n") # Asks the user 'What is your name?' and stores it in the 'name' variable
2
3print("You said your name was " + name)
4
5number = int(input("Please select a random number:\n")) # Will get input as a number
6# Will error if the value entered is not a number
7
8# You can use any type of conversion (int(), bool(), float(), etc.) to modify your input
9
10
1#just get input
2test = input()
3
4#add a custom message
5test = input("Please enter your information: ")
6
7#turning what is inputed into a differnt type of data
8test = int(input("Please enter your information: "))
1name = input("What is your name: ")
2
3print(name)
4
5if name == "Jeff":
6 print("My name Jeff")
1# Python 3
2
3txt = input("Type something to test this out: ")
4
5# Note that in version 3, the print() function
6# requires the use of parenthesis.
7print("Is this what you just said? ", txt)
8