有朋友能帮我找一下下面Python代码的错误吗?

seasons = ['Spring', 'Summer', 'Fall', 'Winter']
list(enumerate(seasons))

我也是在网上学习到的这段代码,但是放到Jupyter(网页版的Python 3)中运行的时候发生下面的错误,可是我是直接从教程中复制过来的呀。。。 

TypeError                                 Traceback (most recent call last)
<ipython-input-104-2e44a0fd866d> in <module>
      1 seasons = ['Spring', 'Summer', 'Fall', 'Winter']
----> 2 list(enumerate(seasons))

TypeError: 'list' object is not callable

  因为刚开始学,还请大家指教!O(∩_∩)O谢谢嗷

我这里跑没问题。。。。

你上面是不是还有一个变量名叫list,跟系统函数list 冲突了

奥谢谢!我知道啦!谢谢!(不知道怎么单独回复hhh)

???