标签: python
我尝试使用nan获取元素,并且可以:
nan
2
但是当我使用类似的东西时:
list.pop()
我收到此错误
lst = [1,5,8,30] arg = lst.pop() print(arg) # output: 30
我该怎么办?