1# in python you can declare a variable by simply typing the variable name and assigning a value to it, no keywords needed. like so:
2
3variable_name = 'value'
4
5# there are 4 types of values you can store in python, just like most languages.
6
7# a string: 'Helo word!'
8# an integer: 1010001
9# a float: 1010101.7
10# and last, a boolean: True or False
11
12# when you have declared a variable you can call it by simpely typing its name
13
14print(variable_name)
15
16# happy coding!
1Python Variables are like boxes that store some values
2
3Example of delcaring a variable:
4
5number = 1
6name = "Python"
7isUseful = True
8number_2 = 1.5