❶ python 输出中文问题,真是整疯了。。。
选择# -*- coding: utf-8-*-,因为你文件编码是utf-8的。
也可以这样,形式简单一些:
#encoding:utf-8
python中有两种类型的字符串:普通的str和unicode。一般情况下,处理中文数据推荐使用unicode类型,因为这样就不用考虑编码的问题。到了显示或输出时再转换为存储类型(utf-8、GBK)。但unicode本身是不能输出的,它只是一种内部编码。
看以下示例代码:
#unicode转str,utf-8编码
u'哈哈哈哈'.encode('utf-8','ignore')
#unicode转str,GBK编码
u'哈哈哈哈'.encode('gbk','ignore')
#str转unicode,其中str为utf-8编码
'哈哈哈哈'.decode('utf-8','ignore')
❷ 如何使用python或R或c或dos命令,获取docx或doc格式文档的字数信息
在windows下你可以调用win32com.client来读取doc文件,然后导出text到变量,用count来统计字数。但结果肯定跟Word统计的字数不一样。
❸ python接收从键盘输入的一串字符串,输出其中不同的字符以及它们各自的字数
试试这个代码python3.x
s=input('请输入字符串:')
ms=set(s)
foriteminms:
print('字符:',item,'数量:',s.count(item))
❹ Python怎么统计中文文本字数
【Python】统计字符串中英文、空格、数字、标点个数 - Alan Lee - CSDN博客
【Python】统计字符串中英文、空格、数字、标点个数 -
随手网络就有,很怀疑这是网络知道机器人自己提问的问题。
网络知道自己也在疯狂刷单。
❺ 如何用python计算文件的字数
#这边的TXT需要改动
flies=open('MyFather.txt','r')
lines=flies.readlines()
lens=len(lines)
dicts={}
#定义一个方法,获取单词,去掉前后标点符号
defgetWord(str):
temp=list(str)
num=len(temp)
word=[]
foriinrange(num):
iftemp[i]!=','andtemp[i]!='.'andtemp[i]!='"':
word.append(temp[i])
else:
return''.join(word).lower()
foriinrange(lens):
word=lines[i].split()
len_num=len(word)
fortinrange(len_num):
words=GetWord(word[t])
ifnotdicts.has_key(words):
dicts=dicts.fromkeys([words],1)
dicts[words]=1
else:
dicts[words]+=1
flies.close()
dicts_list=dicts.items()
num=len(dicts_list)-1
forindinrange(num):
printdicts_list[ind]
这个一个自己写的统计一个纯英文TXT文档中每个单词出现的次数。你看着自己改下吧。