Python字符串拼接最常用的五种方法

Posted Xavier Jiezou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python字符串拼接最常用的五种方法相关的知识,希望对你有一定的参考价值。


引言

本文通过实例展示 Python 字符串拼接最常用的五种方法。

用法

+😀

>>> a = 'hello'
>>> b = 'world'
>>> c = a + b
>>> c
'helloworld'
>>> a += b
>>> a
'helloworld'

f-strings😀

>>> a = 'hello'
>>> b = 'world'
>>> c = f'{a} {b}'
>>> c
'hello world'

join😀

>>> a = 'hello'
>>> b = 'world'
>>> c = ','.join([a, b])
>>> c
'hello,world'
>>> d = '-'.join([a, b])
>>> d
'hello-world'

format😐

>>> a = 'hello'
>>> b = 'world'
>>> c = '{a} {b}'.format(a=a, b=b)
>>> c
'hello world'

%😐

符号类型
%s字符串
%d整数
%f浮点数
>>> a = 3
>>> b = 2
>>> c = 1.5 
>>> d = '%d / %d = %.1f' % (a, b, c)
>>> d
'3 / 2 = 1.5'

总结

  • +:最常用的拼接方法,适合字符串变量的简单拼接
  • f-strings:最灵活、方便的拼接方法,适合字符串变量及常量的复杂拼接
  • join:适合字符串列表的拼接
  • format:不推荐使用,可以用 f-strings 替代
  • %:适合熟悉 C 语言的用户使用

以上是关于Python字符串拼接最常用的五种方法的主要内容,如果未能解决你的问题,请参考以下文章

字符串拼接的五种方式

Java字符串拼接的五种方法,哪种性能最好?

Python - 移除List中重复项的五种常用方法

JSP最常用的五种内置对象(out,request,response,session,application)

编写测试用例常用的五种方法

python3去除字符串(string)空格的五种方法