首页 > 脚本专栏 > python > 连接字符串 Python 连接字符串(join %) 2008-09-06 13:28:00 作者: join 方法用于连接字符串数组,使用 % 连接多个变量下面看例子 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 的 f-string 可以连接字符串与数字的原因解析Python连接字符串过程详解python连接字符串的方法小结python list 合并连接字符串的方法Python中连接字符串的7种方法小结