July 2018
Beginner
202 pages
5h 42m
English
To create a variable, you need to do two things:
As an example, let's make a variable, foo, and assign it the value bar. The code to do this would be:
foo = "bar"
That single line of code declares a variable and assigns a string value to the variable. If you break it into several parts, the actual line of code consists of the following pieces:
