text and variables
You can store text in variables as well as numbers. In order to tell the difference between text and a variable you use quotation marks.
a = "hello" b = "world" c = a + b print c
What will the above code print out? Give it a go!
Output: (clear)











