Znajdź sumę wszystkich wielokrotności 3 lub 5 poniżej 1000 Python
nums = [3, 5]
result = 0
for i in range(0,1000):
if i%3 == 0 or i%5 == 0:
result += i
print(result)
Vivacious Vole