有人可以帮我弄清楚为什么我的功能中没有出现“ {one}”吗?

时间:2019-12-21 02:34:21

标签: python list function

我正在尝试运行此功能,以便仅在输出为['bird','plane','superman','Jesus']的情况下显示修改后的列表。我设法得到此输出,然后在该函数下方“无”。我该如何消除呢?这是下面的功能。

def modify_third_elem(list1):
  if len(list1) >= 3:
    list1[3] = 'Jesus'
  return print(list1)

list1 = ['bird', 'plane', 'superman', 'batman']

print(modify_third_elem(list1))`

0 个答案:

没有答案