set variable python code example
Example 1: python variable
string = 'string'
integer = 5
boolean = True
Example 2: variables in python
x = 5
y = "John"
print(x)
print(y)
string = 'string'
integer = 5
boolean = True
x = 5
y = "John"
print(x)
print(y)