diff --git a/main.py b/main.py index 0a2a552..f192329 100644 --- a/main.py +++ b/main.py @@ -1,5 +1,7 @@ -#1 Line Ifs -x = None -if x is None: print("Oh") -#x = " " -print("Why") if x is None else print ("No") +#Test While else +x = 0 +while x < 10: + print(x) + x += 1 +else: + print("Bye")