LearningPy/main.py

6 lines
105 B
Python
Raw Normal View History

2022-11-30 18:54:52 +00:00
#1 Line Ifs
x = None
if x is None: print("Oh")
#x = " "
print("Why") if x is None else print ("No")