python拼接字符串的方法有哪些?

python拼接字符串的方法有哪些?,第1张

python拼接字符串方法有哪些?

对于字符串而言可以单个使用,也可以进行拼接,在后者的方法上,有常见的加号法供大家选择,这里我们就不再讲了。今天主要给大家带来的是拼接字符串方法的拓展,多为不常见的,如ruby类似、print、template、直接连接、% *** 作符,下面分别具体说明方法。

1.跟ruby类似

def func(a):
  b = 'hello'
  return f'{b}, {a}'
 
>>> func("bbb")
'hello, bbb'

这样是不是很干净,跟ruby很类似。

2.print

>>> a = '111'
>>> print(f'hello, {a}')
hello, 111

3. 使用template

>>> from string import Template
>>> t = Template('Hello, $a!')
>>> t.substitute(a='world')
'Hello, world!'

4.直接连接中间有无空格均可

print('hello'         ' world')
print('hello''world')

5.使用% *** 作符

在 Python 2.6 以前,% *** 作符是唯一一种格式化字符串的方法,它也可以用于连接字符串。

print('%s %s' % ('hello', 'world'))

今天对于python拼接字符串方法的拓展到这里就结束了,有时候我们也可以选择不常用的方法拼接字符串,说不定会有意外惊喜。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/3013620.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-28
下一篇 2022-09-28

发表评论

登录后才能评论

评论列表(0条)

保存