Python随笔-字符串
2021-05-19 03:28
标签:style 随笔 span class 引号 pre int tle 重复 >>>a+b ‘HelloPython‘ >>>a*2 "HelloHello" >>>"H" in a True >>>print(r"\nhh") \nhh Python随笔-字符串 标签:style 随笔 span class 引号 pre int tle 重复 原文地址:https://www.cnblogs.com/wrbxdj/p/9377675.html
ct = "hello WORLD"
print(ct.title()) #title 以首字母大写的方式显示每个单词
print(ct.lower())
print(ct.upper())
# 结果:
# Hello World
# hello world
# HELLO WORLD
ct = "hello WORLD"
s = ct + "!"
print(s)
# 结果:
# hello WORLD!
s1 = ‘ s1 hello world ‘
s2 = "!!!!!!!!!s2 hello world!!!!!!!!!!!!"
#删除字符串右边的字符,默认为空白
print(s1.rstrip() + "|")
print(s2.rstrip("!") + "|")
#删除字符串左边的字符,默认为空白
print(s1.lstrip() + "|")
print(s2.lstrip("!") + "|")
#删除字符串两边的字符,默认为空白
print(s1.strip() + "|")
print(s2.strip("!") + "|")
# 结果:
# s1 hello world|
# !!!!!!!!!s2 hello world|
# s1 hello world |
# s2 hello world!!!!!!!!!!!!|
# s1 hello world|
# s2 hello world|
+
字符串连接
*
重复输出字符串
in
成员运算符-如果字符串中包含给定的字符返回True
r/R
原始字符串,不进行转义
# python三引号允许一个字符串跨多行,字符串中可以包含换行符、制表符以及其他特殊字符。
ss = ‘‘‘
line1
line2
line3
‘‘‘
print(ss)
上一篇:Python随笔-切片
下一篇:Python随笔