TypeError: 'list' object is not callable in python

前端 未结 11 1681
醉梦人生
醉梦人生 2020-11-22 13:11

I am novice to Python and following a tutorial. There is an example of list in the tutorial :

example = list(\'easyhoss\')

Now

11条回答
  •  [愿得一人]
    2020-11-22 13:42

    If you are in a interactive session and don't want to restart you can remove the shadowing with

    del list
    

提交回复
热议问题