字符串
1 转义字符
\t(tab)
\r(只读后面)
2 原始字符串
s=r'Hell\n world'->Hell\n world
3 文章
"""
内容
"""
4 字符串转化数字
int('20') √
int('20.1') ×
float('20.0') √
int('AB') x(10进制无法转化)
int('AB',16) √(16进制可转化)
数转化字符串
ste(4234234.123423)
占位符
s = '{0}x{0}x{1}'.format(1,2)->1x1x2
格式化控制符
s = '{0:s}x{1:d}'.format(1,2)->'1'(字符串行式)x2(10进制浮点数)
操作字符串
s_str='he ll o'
s_str.find('l')->2
find('',sart,end)->找不到返回-1
s_str.replace(' ','s',2)->hesllso
分割字符串
s_str.split(' ',maxsplit=1) #切一刀
['he','ll 0']
统计
s_str.count(l)->2
例子
wordstring=wordstring.replace(',',' ')
wordlist = wordstring.split(' ')
wordfreq = []
for i in wordstring:
wordfreq.append(wordstring.count(i))
d = dict(zip(wordlist,wordfreq))
print(d)
->>