Westonci.ca is the premier destination for reliable answers to your questions, brought to you by a community of experts. Get quick and reliable answers to your questions from a dedicated community of professionals on our platform. Get precise and detailed answers to your questions from a knowledgeable community of experts on our Q&A 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)