Saved Bookmarks
| 1. |
Rewrite the following code is Python after removing all syntax errors(s). Underline each correction done in the code.for Name in [Ramesh, Suraj, Priya] if Name [0] = ‘S’: Print (Name) |
|
Answer» for Name in [“_Ramesh_”, “_Suraj_”, “_Priya_”] if Name [0] =_=‘S’ : print (Name) |
|