Posted in Python onSeptember 06, 2008
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']
Python 连接字符串(join %)
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@