in python variable name code example
Example 1: python variable
string = 'string'
integer = 5
boolean = True
Example 2: Use variables in python
x = 'Welcome'
print(x)
string = 'string'
integer = 5
boolean = True
x = 'Welcome'
print(x)