how to declare variables i pythnon code example
Example: python cvariables
x = 7 #sets int as x
y = "John"# sets the string as y
print(x)#prints x
print(y)# prints y
x = 7 #sets int as x
y = "John"# sets the string as y
print(x)#prints x
print(y)# prints y