pythom var int code example
Example 1: declare float python
myfloat = 7.0
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
myfloat = 7.0
x = 7 #sets int as x
y = "John"# sets the string as y
print(x)#prints x
print(y)# prints y