当前位置: 首页 > 图文教程 > 脚本技术 > Python > Python 连接字符串(join %)

Python
Python 文件操作实现代码
动态创建类实例代码
python 中文字符串的处理实现代码
Python 匹配任意字符(包括换行符)的正则表达式写法
Python 开发Activex组件方法
Python+Django在windows下的开发环境配置图解
python 文件和路径操作函数小结
python 快速排序代码
Python2.5/2.6实用教程 入门基础篇
Python3 入门教程 简单但比较不错
Python 元类使用说明

Python 连接字符串(join %)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-09-11   浏览: 430 ::
收藏到网摘: n/a

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']