字符串连接的5种⽅法
1. 加号
第⼀种,有编程经验的⼈,估计都知道很多语⾔⾥⾯是⽤加号连接两个字符串,Python⾥⾯也是如此直接⽤ “+” 来连接两个字符串;
>>> print("hello "+"world")
hello world
2. 逗号
第⼆种⽐较特殊,使⽤逗号连接两个字符串,如果两个字符串⽤“逗号”隔开,那么这两个字符串将被连接,但是,字符串之间会多出⼀个空格;
>>> print('hello','world')
hello world
3. 直接连接
第三种也是,python 独有的,只要把两个字符串放在⼀起,中间有空⽩或者没有空⽩,两个字符串将⾃动连接为⼀个字符串;
>>> print('hello''world')
helloworld
或者
>>> print('hello'  'world')
helloworld
4. 格式化
第四种功能⽐较强⼤,借鉴了C语⾔中 printf 函数的功能,如果你有C语⾔基础,看下⽂档就知道了。这种⽅式⽤符号“%”连接⼀个字符串和⼀组变量,字符串中的特殊标记会被⾃动⽤右边变量组中的变量替换:
>>> print('%s %s' % ('hello','world'))
hello world
5. join字符串函数连接
就属于技巧了,利⽤字符串的函数 join 。这个函数接受⼀个列表,然后⽤字符串依次连接列表中每⼀个元素:
>>> str_list = ['hello','world']
>>> a = ''
>>> print(a.join(str_list))
helloworld

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。