Consider the following code:
evens = 0
for i in range(0, 50):
1.
if i%2=0:
evens.add(i)
What are two changes that need to be made to this code so that it will create a list that contains
all of the positive, even numbers less than 50?



Answer :

Other Questions