#variable for the input: variable_name = input("please add your input: ") print(variable_name) #example #output(Type Hi please: ") #print(output) #Output will be Hi if you typed hi
Here is what the above code is Doing:
1. It’s asking for input from the user
2. It’s storing the input in a variable called variable_name
3. It’s printing the value of the variable