Two strings with variable
variable_demo.py
The assignment statement is on line 2.
# This program demonstrates a variable.
room = 503 # this is an assignment statement.
print('I am staying in room number')
print(room)
variable_demo.py
The assignment statement is on line 2.
# This program demonstrates a variable.
room = 503 # this is an assignment statement.
print('I am staying in room number')
print(room)