Python Basics — Day 4(Input & Output in Python)
Day 4 — Input & Output in Python
01. Output with print()
The print() function displays values on the screen.When printing multiple values separated by commas, Python automatically adds spaces.
print("Hello")
print("Age:", 25, "years")
# Output: Age...
sabinsim.hashnode.dev2 min read