1 2 3 4 5 6 7 8 9 10 11 12
b: bool = False e: str = "Hello world" while b: print(b) d: bool = True while d: print(d and False) print(d and True) print("hello")