我不明白这段代码是如何工作的:
i = 1 while False: if i % 5 == 0: break i = i + 2 print(i)
什么呢while False?什么是假的?我不明白......
while False
python while-loop python-3.x
python ×1
python-3.x ×1
while-loop ×1