Python err str object is not callable 发表于 2021-05-10 更新于 2022-12-01 分类于 python 阅读次数: 本文字数: 454 阅读时长 ≈ 1 分钟 在 VSCode 上写代码的时候,终端突然不能做 int 到 String 的转化了 12345678# TypeError Traceback (most recent call last)# <ipython-input-40-5760e6fd64bf> in <module># 10 else:# 11 tmpStr = re.sub('\s+', ' ', sub['preview'])# ---> 12 allLines += "\n" + str(sub['lineNumber']) + " " + tmpStr# 13 # TypeError: 'str' object is not callable 查了下,str 是一个 global 的函数,如果之前有类似 str = 'asdf' 的赋值语句的话,后面对这个函数的调用就会出问题。。。。 回忆一下,貌似终端 debug 的时候有做过类似的操作 (; ̄ェ ̄) 本文作者: Jack Zheng 本文链接: https://jack-zheng.github.io/hexo/2021/05/10/Python-err-str-object-is-not-callable/ 版权声明: 本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!