Write a Python script to create a list of first N even natural numbers.
#Write a Python script to create a list of first N even natural numbers.
list=[]
num=int(input("Enter the numbers:"))
for i in range(1,num):
if i%2==0:
list.append(i)
print(list)
print(type(list))
Comments
Post a Comment