Saved Bookmarks
| 1. |
Find the errors from the following code: for i in 1 to 100: print i |
|
Answer» for i in range (1,100): print i |
|