See More

# Variables Write a string (This can be any combination of letters). ```python Hello ``` Then add a space and an equal sign. ```python Hello = ``` If you want an integer, add a space and put a number. ```python Hello = 1 ``` If you want the integer go up by a number, add a plus before the equals. ```python Hello += 1 ``` If you want a string, put the string in between a pair of quotation marks. ```python Hello = "Variable" ``` ## Examples ### Example 1: ```python dollars = 100 ``` ### Example 2: ```python dollars = "none" ``` ### Example 3: ```python dollars = 1 dollars += 1 ```