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