Storing user input with variables

89 0 0
                                    

   Here we will store user input with variables in case your script requires user input. This is how we make use of input(). Here we are going to use input() to define a variable just like before how we used Example =. Let me show you.
#code start
Example = input("type here: ")
Print(Example)
#code end
    See how we defined Example. Neat huh, it's not that hard and your not far from your first program!

Learn python scripting for beginnersWhere stories live. Discover now