python def variable code example
Example 1: python cvariables
x = 7 #sets int as x
y = "John"# sets the string as y
print(x)#prints x
print(y)# prints y
Example 2: how to def a variable in python
variable = "text" #string
variable = 125 #integer
variable = True #boolean
variable = False #boolen
variable = 125.9854 #float