标签:cmd gear 类型 tran orm faq intern sed mirror
字符串
s = ‘Hello Python‘
print(s)
# 索引和切片
s = ‘Python‘
print(s[1]) # y
print(s[-1]) # n
print(s[1:4]) # yth 顾头不顾尾
# capitalize() 首字母大写
s = ‘hello python‘
print(s.capitalize()) # Hello python
# upper() lower() 全大写和全小写
s1 = ‘hello python‘
s2 = ‘HELLO PYTHON‘
print(s1.upper()) # Hello python
print(s2.lower()) # hello python
# title() 每个隔开(特殊字符和数字)的单词的首字母大写
s = ‘life is short you need python‘
print(s.title()) # Life Is Short You Need Python
# center() 两边按指定字符填充 居中
s = ‘python‘
print(s.center(20,‘-‘)) # -------python-------
# len() 长度 字符数
s = ‘i love you jiang zi ya‘
print(len(s)) # 22
s1 = ‘我喜欢你‘
print(len(s1)) # 4
# startswith() 判断是否以什么什么开头 支持指定起始和终止
s = ‘jiang ziya‘
print(s.startswith(‘jiang‘)) # True
print(s.startswith(‘ziya‘)) # False
print(s.startswith(‘jiang‘,0,5)) # True
print(s.startswith(‘jiang‘,0,4)) # False
# find() 查找每个字符的索引 没找到返回-1 支持指定起始和终止
s = ‘jiang zi ya‘
print(s.find(‘z‘))
print(s.find(‘zi‘))
print(s.find(‘Jiang‘))
# index() 查找每个字符的索引 没找到报错
print(s.index(‘z‘))
print(s.index(‘zi‘))
# print(s.index(‘Jiang‘))
# strip() 去除两边的指定字符串 默认删空格 rstrip() 左边 lstrip() 右边
s = ‘ python ‘
print(s.strip())
print(s.strip(‘‘))
print(s.strip(‘ ‘))
print(‘‘.center(20,‘-‘))
s1 = ‘*%jiang*%wei*%%%%‘
print(s1.strip(‘*%‘))
# count() 计算某个字符的个数 支持指定起始和终止位置
s = ‘Python python‘
print(s.count(‘t‘))
print(s.count(‘jiang‘))
# split() 按照指定字符切割 默认按照空格切割 返回列表
s = ‘ i love you ‘
print(s.split())
print(s.split(‘ ‘))
s1 = ‘--he--he--he--‘
print(s1.split(‘--‘))
# replace() 替换 可以指定替换数
s = ‘who are you who are you who are you‘
print(s.replace(‘you‘,‘she‘))
print(s.replace(‘you‘,‘she‘,2))
# is系列
name = ‘jiangziya1‘
print(name.isalpha()) # 判断字符串是否由字母组成
print(name.isalnum()) # 判断字符串是否由数字和字母组成
print(name.isdigit()) # 判断字符串是否右数字组成
标签:cmd gear 类型 tran orm faq intern sed mirror
原文地址:https://www.cnblogs.com/xjmlove/p/10074245.html