Computer Science, asked by bala2961980, 5 months ago

1. Rewrite the following code after removing syntactical
each correction done in the code.
for name in (amar,shweta, parag]
If name[0]='s:
print(name)​

Answers

Answered by jack4610
1

Answer:

for name in [''amar','shweta','parag'] :

if name[0] == 's':

print(name)

Similar questions