E is the correct answer.
Breakdown of data = ('Peter',) * (len(nums) - nums[::-1][0])
len(nums) = 3
nums[::-1] reverses the list so nums would become [3,2,1]
nums[0] would then return 3 as the first element
When multiplying a tuple, you create that many versions of the current entry. 3-3 becomes 0 and multiplying anything by 0 becomes 0 so there would be 0 entries in the tuple returning ()
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.
LunaMeadows1
2 months, 3 weeks agochristostz03
3 months ago