python variables declare code example
Example 1: how to declare a variable in python
variable = 2
Example 2: how to define variable in python
saving = 100
print (saving)
Example 3: Use variables in python
x = 'Welcome'
print(x)
variable = 2
saving = 100
print (saving)
x = 'Welcome'
print(x)