Computer Science, asked by shreyas5145, 4 months ago

colors=['red', 'blue', 'green']
for i in colors:
if i==n'blue':
continue
print(i)​

Answers

Answered by prosunny8085
1

Answer:

colors=['red', 'blue', 'green']

for i in colors:

if i==n'blue':

continue

print(i)

output->

red green

Similar questions