InterviewSolution
Saved Bookmarks
| 1. |
2. To print the sum of first 10 even numbers. |
|
Answer» PythonExplanation:print(2 + 4 + 6 + 8 + 10 + 12 + 14 + 16 + 18 + 20)Output 88 |
|