Saved Bookmarks
| 1. |
Rewrite the following code in Python after removing all syntax errors(s). Underline each correction done in the code.for Name in [Amar, Shveta, Parag] if Name [0] = ‘s’: Print (Name) |
|
Answer» for Name in [“_Amar”, ”_Shveta_” , "_Parag_”] : if Name [0] E == ‘S’ : Print (Name) |
|