Q10: why the solution in Q10 give me an error??
why the solution in Q10 give me an error??
2 answers ( 0 marked as helpful)
Hey Amal,
Thank you for reaching out.
I can't immediately find the issue with your code. Since your source file is very long (more than 500 lines), it's possible that you've left some previous code uncommented. My suggestion is that you create a new source file, paste the solution to question 10 there, and run the code.
Let me know if you still experience this problem.
Kind regards,
365 Hristina
Super learner
This user is a Super Learner. To become a Super Learner, you need to reach Level 8.
its running end to end for me, please crosscheck again:
n=100
evens=[]
odds=[]
for i in range(n+1):
if not i%2:
evens.append(i)
else:
odds.append(i)
print(f'the evens are {evens}')
print(f'the odds are {odds}')