Python Quick References

Variables
Variables are values, for example X=Y or A=100 in this example X and A are variable and Y and 100 are assigned to variable X and A
Input
output
Input
output
Strings
Basically a String is a text for example the word "Gray" is a String
Let's create a longer string and see the output
input
output
Let's try with quotes
input
output
str()
The str() function turns non-strings such as numbers into strings
len()
Then len() show you the length of the string
input
output
Format()