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: "))
1# Taking string input
2a = input("Enter a string: ")
3print("String is: ", a)
4
5# Taking integer input
6b = int(input("Enter an integer: "))
7print("Integer is: ", b)
8
9# Taking float input
10c = float(input("Enter a float value: "))
11print("Float value is: ", c)
12