variable = value or 0 python code example
Example 1: python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Example 2: variables in python
x = 5
y = "John"
print(x)
print(y)
x = 5
print(type(x))
# Output: <class 'int'>
x = 5
y = "John"
print(x)
print(y)