09 python初学 (字符串)

Posted mlllily

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了09 python初学 (字符串)相关的知识,希望对你有一定的参考价值。

# 重复输出字符串
print(hello * 2)
# >>>hellohello

# 字符串切片操作
print(hello[2:])
# >>>llo

# 关键字 in
print(ll in hello)
# >>> True

# 字符串拼接

# 不推荐使用此种方式,方式一
a = 123
b = abc
c = haha
d = a + b
print(d)
# >>> 123abc
# 方式二join,字符串的拼接: ‘拼接字符串‘.join([a, b]),将后面列表里的a,b用前面的拼接字符串拼接起来
d = ‘‘.join([a, b])
print(d)
# >>>123abc
d = ---.join([a, b, c])
print(d)
# >>>123---abc---haha

 

以上是关于09 python初学 (字符串)的主要内容,如果未能解决你的问题,请参考以下文章

Python代码阅读(第19篇):合并多个字典

Python代码阅读(第38篇):根据谓词函数和属性字符串构造判断函数

Python Tornado初学笔记之表单与模板

Python代码阅读(第26篇):将列表映射成字典

Python 向 Postman 请求代码片段

python+spark程序代码片段