There are many metaphors for variables in Python. One could view a as something like a bucket, into which you can place data. So the bucket called could have the value of — but, crucially, because it is a variable, it’s value can change to or any other number at any point. variable age 12 13 In truth, most quantities that we use in a programming language can have values that change, and these quantities are variables (the opposite of which is a , but more on that another time). A variable in Python has an identifier, and the Pythonesque way of thinking of this is (note the lower case): constant identifier = value So for example: age = 13 …has as the identifier, in this case a variable, and as the value. Another example: age 13 = (“What is your name?”) name input Here, the identifier (variable) is and the value that has been to this variable is…ah, well, that is in fact another command within Python called . The input command asks Python to issue the user with some text, such as “What is your name?”, and to await a response that the user types in on the keyboard. So in this case, the text that the user types in will be assigned to the variable called name. name, assigned input Let’s flesh this out a little. As you can see here, the first line of code simply prints “Hello, world.”. The name = input line displays the message “Please enter your name”), then stores what the user types. It then assigns this thing that it has stored to the variable . In this case it stored the word ‘Steve’ and assigned it to the variable. Just for good measure, it then printed what is inside the variable (the word ‘Steve’), and then it strung together a message to the user, by using a + operator. This is something called and will be explored next. Simple really! name concatenation