Python错误集锦:使用字符串join()方法时提示TypeError: join() takes exactly one argument (3 given)

原文链接:http://www.juzicode.com/archives/3895

使用字符串join()方法时提示TypeError: join() takes exactly one argument (3 given)

错误提示:

#juzicode.com/vx:桔子code
a = ''.join('juzi','code','.com')
print(a)
==========运行结果:
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-22-66e7d4866316> in <module>
      1 #juzicode.com/vx:桔子code
----> 2 a = ''.join('juzi','code','.com')
      3 print(a)

TypeError: join() takes exactly one argument (3 given)

错误原因:

1、字符串的join()方法只能带1个入参

解决方法:

1、该例子中的3个字符串作为list的3个元素,组成一个新的list,再将这个list传入给join()方法:

#juzicode.com/vx:桔子code
a = ''.join(['juzi','code','.com'])
print(a)
==========运行结果:
juzicode.com

扩展内容:

  1. Python基础教程2b–数据类型-string(字符串)
  2. Python错误集锦:join()函数提示TypeError: sequence item 0: expected str instance, int found


如果本文还没有完全解决你的疑惑,你也可以在微信公众号“桔子code”后台给我留言,欢迎一起探讨交流。

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注