当前位置:   article > 正文

python bug解决方法:not all arguments converted during string formatting

not all arguments converted during

原代码如下:

  1. f = open("test.txt", "r")
  2. str = f.read(3)
  3. print("读取的数据是: " % str)

错误原因: % 操作符只能直接用于字符串,列表、元组,因此需要一一匹配操作符

解决方法:添加"%s"

  1. f = open("test.txt", "r")
  2. str = f.read(3)
  3. print("读取的数据是%s : " % str)

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/667321
推荐阅读
相关标签
  

闽ICP备14008679号