All ways to use variables in python code example
Example 1: declaring variables in python
my_name = "your name here "# you can add perenthisis
print(my_name)
Example 2: variables in python
x = 5
y = "John"
print(x)
print(y)
my_name = "your name here "# you can add perenthisis
print(my_name)
x = 5
y = "John"
print(x)
print(y)