Saved Bookmarks
| 1. |
Find the errors from the following code:i=10 ;while [i<=n]:print ii+=10 |
|
Answer» i=10 n=100 while (i<=n): print i i+=10 |
|