Write and execute a PYTHON program to perform the following tasks.
1. Find the sum of all numbers below 1000 which are multiples of 3 or 5 in Python
sum=0 for (i in range(0,1000)): if (i%3==0 or i%5==0): sum=sum+i print(sum)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment