I am new to python and I was trying to print strings with variables however I am not getting the desired output. I get the correct output on online editior.
a = 300
a
b = "Shyam"
b
print('a --', a)
print("b -->", b)
The output in my screen is given below