手机
当前位置:查字典教程网 >脚本专栏 >python >Python 连接字符串(join %)
Python 连接字符串(join %)
摘要:join方法用于连接字符串数组复制代码代码如下:s=['a','b','c','d']print''.join(s)print'-'.joi...

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 %)】相关文章:

python 实现归并排序算法

学习python (1)

Python去掉字符串中空格的方法

Python ljust rjust center输出

python学习手册中的python多态示例代码

python线程池的实现实例

python连接mysql并提交mysql事务示例

Python 文件重命名工具代码

python笔记(1) 关于我们应不应该继续学习python

python使用正则搜索字符串或文件中的浮点数代码实例

精品推荐
分类导航