Python 连接字符串(join %)

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

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,连接字符串
0
投稿

猜你喜欢

  • 《用户体验的要素》摘记

    2008-08-04 17:59:00
  • python学习之使用Matplotlib画实时的动态折线图的示例代码

    2021-03-03 17:33:31
  • Python第三方库的安装方法总结

    2022-09-23 12:14:46
  • 实例讲解SQL Server加密功能

    2024-01-24 04:05:15
  • 200 行python 代码实现 2048 游戏

    2021-08-06 16:17:35
  • Python Dataframe常见索引方式详解

    2023-06-21 21:03:25
  • Python中six模块基础用法

    2021-03-12 18:24:30
  • python实现博客文章爬虫示例

    2022-06-30 08:20:40
  • 使用javascript将时间转换成今天,昨天,前天等格式

    2024-04-10 10:42:20
  • asp.net中调用winrar实现压缩解压缩的代码

    2023-07-18 14:30:30
  • MySQL适配器PyMySQL详解

    2024-01-16 23:49:11
  • 在asp中调用sql server的存储过程方法

    2007-08-13 13:28:00
  • jquery弹出层背景变暗 Lee dialog

    2008-08-18 13:11:00
  • Window 64位下python3.6.2环境搭建图文教程

    2023-07-26 02:22:45
  • Python:二维列表下标互换方式(矩阵转置)

    2022-07-09 13:29:58
  • Python简单爬虫导出CSV文件的实例讲解

    2022-10-11 03:39:19
  • go类型转换及与C的类型转换方式

    2024-04-28 09:18:38
  • Python实现去除列表中重复元素的方法小结【4种方法】

    2022-10-17 12:24:09
  • js中的内部属性与delete操作符介绍

    2024-04-10 16:15:12
  • JavaScript实现年历效果

    2023-09-10 10:53:26
  • asp之家 网络编程 m.aspxhome.com