
Jason Widjaja
7,904 Pointsidk what this code is asking
i dont know the meaning of the question pls help
my_list = []
for i in range(10):
print(i)
1 Answer

Steven Parker
205,354 PointsThe instructions say "The body of the for loop should append the current value to the provided list called my_list.", so you know you will need to use "my_list" in the function.
They also give you this helpful hint "To append a value to a list, use the syntax my_list.append(val)
."