P4B Quiz (14):迴圈控制 – while loops by KC 2023-03-25 written by KC 2023-03-25 0 comment 1.2K Welcome to your quiz -「 P4B Quiz (14):迴圈控制 - while loops」 Name Email 1. 以下執行結果是什麼? i = 1n = 3while i < n: print(i) i = i + 1 1 2 1 2 3 12 123 2. 以下執行結果是什麼? age = 32while age > 18: print('你有投票權') 你有投票權 你有投票權你有投票權 你有投票權你有投票權你有投票權 系統會執行無限多次你有投票權 3. 以下執行結果是什麼? counter = 0while counter <= 2: print('Inside loop') counter = counter + 1else: print('Inside else') Inside loopInside loop Inside loopInside loopInside loop Inside loopInside loopInside else Inside loopInside loopInside loopInside else 4. 以下執行結果是什麼? i = 1while i < 3: print(i) i += 1 12 1 2 123 1 2 3 5. 以下執行結果是什麼? i = 1while i <= 6: print(i) if i == 3: break i += 1 12345 1234 123 12 6. 以下執行結果是什麼? i = 0while i < 5: i += 1 if i == 3: continue print(i) 1234 12345 124 1245 7. 以下執行結果是什麼? n = 5while n > 0: n -= 1 print(n) if n == 2: breakelse: print('Loop done.') 54321 4321 5432 432 8. 如果 i 為 3,則停止循環。下面空格應該填入什麼? i = 1while i < 6: if i == 3: _______ i += 1 9. 以下執行結果是什麼? i = 0while i < 4: i += 1 print(i) breakelse: print("No Break") 10. 以下執行結果是什麼? mylist = [3, 5]squares = []while mylist: squares.append((mylist.pop())**2)print(squares) Time's up Share 0 FacebookTwitterPinterestEmail previous post P4B Quiz (4):運算子、輸入、輸出及 import 簡介 next post P4B Quiz (15):迴圈控制 – for loops