the_list = [x for x in range(0,1)] => the_list = [0[
Inside the function, parameter refers to a new list containing [-2]
But this does not modify the_list outside the function — it just reassigns the local variable parameter.
Then the function returns parameter, but the return value is not used.
Outside the function the_list is still [0].
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
4ba36e7
1 month, 3 weeks ago