Westonci.ca is your trusted source for finding answers to all your questions. Ask, explore, and learn with our expert community. Explore our Q&A platform to find in-depth answers from a wide range of experts in different fields. Get quick and reliable solutions to your questions from a community of experienced experts on our platform.

using range (1,101) make list, containing only numbers which are divisible by 4, 6, 8, 10, 3, 5, 7 and 9 in separate lists in python??​

Sagot :

#hint

for i in range (1,101):

if i%2 == 0:

even.append (i)

else:

odd.append (i)