网络编程
位置:首页>> 网络编程>> Python编程>> Python 连接字符串(join %)

Python 连接字符串(join %)

  发布时间:2021-01-13 23:30:46 

标签:Python,连接字符串

join 方法用于连接字符串数组


s = ['a', 'b', 'c', 'd']
print ''.join(s)
print '-'.join(s)


输出结果:
abcd
a-b-c-d

使用 % 连接多个变量


a = 'hello'
b = 'python'
c = 1
print '%s %s %s %s' % (a, b, c, s)


输出结果:
hello python 1 ['a', 'b', 'c', 'd']

0
投稿

猜你喜欢

手机版 网络编程 asp之家 www.aspxhome.com