在转换的字符串中,存在null时,就会出现NameError: name ‘null’ is not defined这个错误。
解决办法:使用replace方法将null替换掉
注意:replace argument 2 must be str replace的两个参数都必须为字符串
str.replace("null", "")
2024-02-03 17:48:52
在转换的字符串中,存在null时,就会出现NameError: name ‘null’ is not defined这个错误。
解决办法:使用replace方法将null替换掉
注意:replace argument 2 must be str replace的两个参数都必须为字符串
str.replace("null", "")