returning the list reversed

后端 未结 2 933
一向
一向 2021-01-29 05:37

i have this question:

Write a function reverse3(nums) that takes a list of ints of length 3 called nums and returns a new list with the elements in reve

2条回答
  •  温柔的废话
    2021-01-29 06:18

    reversed returns an iterator. If you want to get a list object, use list:

    >>> def reverse3(nums):
    ...     return list(reversed(nums))
    ... 
    >>> reverse3([4,5,6])
    [6, 5, 4]
    

提交回复
热议问题