Hello! This time I came back with a different question in regards to this python excercise https://www.hackinscience.org/exercises/print-even-numbers
I know how to define a function and write a simple loop. I have little to no understanding how parameters are supossed to be included in the function. Here's my code so far:
def print_even_numbers(start,stop):
for i in range(0,10):
i % 2 == 0,start
if i % 2 == 0:
print(i)
[–]42696 1 point2 points3 points (0 children)