News

Contribute to Poojith23/Python-program-to-print-all-even-numbers-in-a-range development by creating an account on GitHub. Skip to content Toggle navigation. Sign up Product Actions. Automate any ...
#2 create two lists to store all even and odd numbers from 1 to 20 individually even = [] # create a list for even numbers odd = [] # create a list for odd numbers for k in range(1, 21): if k%2 == 0: ...