Python中的字符串

string模块中的常量:

import string

string.digits:找出字符串中所有数字

string.letters:找出字符串中所有字母

string.lowercase:找出字符串中所有小写字母

string.uppercase:与上相反

string.printable:可打印字符的字符串

string.punctuation:找出字符串中的所有的标点

string中的函数:

str.find(sub_string):在str中查找sub_string,返回sub_string所在位置最左端索引,没有找到返回-1

str.find(sub_string, index1,index2):也可选择起始点和终点

char.join(string):在str中插入符号char,结果另存到一个字符串中,原字符串不变

相反的,str.split(char):以char作为分隔符,将str分隔成序列,存储到列表中

str.lower():str中的字母都变成小写

str.title():str中的字母除首字母大写,其他小写。=====等价于string.capwprdss(str),不同的是capwords是string模块中的函数,需要import string

str.replace(source_str, dest_str),返回匹配后被替换的字符串,原字符串不变

str.strip():去掉str两头空格的字符串,原字符串保持不变。

str.strip(string.punctuation):去掉字符串中的所有标点符号

举个例子帮助理解,例子出处为“编程小白的第一本Python入门书”


with open(path,'r') as text:
words = [raw_word.strip(string.punctuation).lower() for raw_word in text.read().split()]
words_index = set(words)   //去重 
counts_dict = {index:words.count(index) for index in words_index}   //存储的是单词以及单词出现的次数,单词是键,次数是值
for word in sorted(counts_dict,key=lambda x: counts_dict[x],reverse=True):           //以字典中的值为排序的参数
print('{} -- {} times'.format(word,counts_dict[word]))         //打印单词以及单词出现的次数    




  • 1
    点赞
  • 3
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值