What will be a boolean in the following Python code? i = 2. while True: if i%3 break print(i) i += 2 break print(i) i%3
Posted: Sun May 15, 2022 8:19 am
What will be a boolean in the following Python code? i = 2. while True: if i%3 break print(i) i += 2 break print(i) i%3 == 0 O i = 2