learn-python/l5.py
2023-06-07 17:58:34 -04:00

7 lines
56 B
Python

x = 10
if x == 5:
print("True")
else:
print("False")