print function in Python


Open File:
"filename.py"

Code:
a, b =4, 5
print(a," + ", b, " = ", a+b)

Run File:
> py filename.py

Comments