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
-
answerhappygod
- Site Admin
- Posts: 899604
- Joined: Mon Aug 02, 2021 8:13 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
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
Join a community of subject matter experts. Register for FREE to view solutions, replies, and use search function. Request answer by replying!