Saved Bookmarks
| 1. |
Write a program which will display the multiplication of numbers from 15 to 250. |
|
Answer» sum = 1 for i in range(15, 251): sum*=i print(sum) |
|