当前位置:   article > 正文

TypeError: not all arguments converted during string formatting问题解决_date all arguments converted during string

date all arguments converted during string
python中TypeError: not all arguments converted during string formatting解决方法
例如:
>>> str=(1,2,3)  #创建一个集合
>>> str
(1, 2, 3)
>>> print 'str= %s ' % str
Traceback (most recent call last):
  File "<pyshell#43>", line 1, in <module>
    print 'str= %s ' % str
TypeError: not all arguments converted during string formatting

原因: % 操作符只能直接用于字符串('123'),列表([1,2,3])、元组
解决方法:
>>> print 'str= %s' % (str,)
str= (1, 2, 3)
也可以用:
>>> print 'str= %s,%s,%s' % str
str= 1,2,3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/667323
推荐阅读
相关标签
  

闽ICP备14008679号