types of variables python code example
Example 1: python variable
Python variable
Example 2: Use variables in python
x = 'Welcome'
print(x)
Example 3: python data types
# Float
average_tutorial_rating = 4.01
# Integer
age = 20
# Boolean
tutorials_are_good = True # True or False
# arrays/lists
numbers = [1, 2, 3]