how to put variables in python code example
Example 1: how to add variables python
x = 5
y = 10
x+y
#result = 15
Example 2: Use variables in python
x = 'Welcome'
print(x)
x = 5
y = 10
x+y
#result = 15
x = 'Welcome'
print(x)