GitStudy/Chapter1Introdution/delete_gaps_case.py
2025-04-13 21:55:09 +06:00

9 lines
195 B
Python

username = " Bearik "
print(f"{username} hello!")
username = username.rstrip().lstrip()
print(f"{username} hello")
print(2 / 3)
age = 14_000_000_000
print(age)
x, y, z = 0, 5, 10
print(x, y, z)