python模塊和變量起名容易引起錯誤的點

#!/usr/bin/env python # coding:utf-8 list = ["a", "b", "c", "d"] # 備註:如果變量名使用list關鍵字,會提示"list" object is not callable tup_1 = (1,2,3,4,5) tupToList = list(tup_1) # 這裏用到了list方法 print(tupToList) 解
相關文章
相關標籤/搜索