9 lines
195 B
Python
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) |