Kevin Tiller

Generation

fix invalid codeSat, 22 Apr 2023

def zero_to_n(n): for i in range(n + 1): print(n) # Input handling, do not modify! n = int(input(n)) zero_to_n(n)

*Question 4: Return the sum of all even numbers between 0 and 100 (inclusive)*

Want to kickstart your project?Use the new AI Studio to create your code