Which of the following does not properly nest control structures?
Pilihan jawaban
for i in range(3):
for j in range(6):
print(j)
for i in range(3):
if i > 2:
break
else:
print(i)
count = 0
if count < 10:
for i in range(3):
print(count)
count = count + 1
count = 10
for i in range(3):
if count > 0:
print(i)
else:
print(count)