Sunday, February 10, 2019

Summer Vaccation Homework (Q9)

Q. Write a program that creates a list of all the integers less than 100 that are multiples of 3 or 5.

Code:

Lst = []
for i in range(100):
if i % 3 == 0 or i % 5 == 0:
Lst.append(i)
print("The list is:", Lst)

No comments: