Python99 P101: Find the last element of a list 求列表中最后一个元素

求列表中最后一个元素。用单元测试描述为: from python99.lists.p101 import find_last_one, find_last_one_recursive def test_find_last_one():     input = [1,4,6,'s','no','X']     actual = find_last_one(input)     assert act
相关文章
相关标签/搜索