use a number as variable python code example
Example 1: python declare int
x = 5
print(type(x))
# Output: <class 'int'>
Example 2: python cvariables
x = 7 #sets int as x
y = "John"# sets the string as y
print(x)#prints x
print(y)# prints y
x = 5
print(type(x))
# Output: <class 'int'>
x = 7 #sets int as x
y = "John"# sets the string as y
print(x)#prints x
print(y)# prints y