python number variable code example
Example 1: python variable
string = 'string'
integer = 5
boolean = True
Example 2: python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Example 3: variables in python
x = 5
y = "John"
print(x)
print(y)