MyLst = []
for x in range(7, 40):
if 80 % x == 0:
MyLst.append(x)
print(MyLst)
# [8, 10, 16, 20]
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
MyLst = []
for x in range(7, 40):
if 80 % x == 0:
MyLst.append(x)
print(MyLst)
# [8, 10, 16, 20]