python小練習 個人谷歌輸入法詞頻分析

2021-07-24 03:25:38 字數 872 閱讀 3937

'''python小練習--谷歌輸入法詞頻分析'''
import pandas as pd

def search_dict(n,data):

cnt=0

chinesedict=dict(zip(data['詞頻'],data['中文']))

spelldict=dict(zip(data['詞頻'],data['拼音']))

chinese_spell_dict=dict(zip(data['中文'],data['拼音']))

print '中文\t拼音'

for key in chinesedict.keys():

if(key>n):

chinese=chinesedict.get(key)

print chinese+'\t'+chinese_spell_dict.get(chinese)

cnt+=1

print 'total: '+unicode(cnt)

f=open('e:/test/dict.dic','r')

strlist=

for line in f.readlines():

tmp=line.split('\t')

f.close()

data=pd.dataframe(strlist,index=range(1,len(strlist)+1),columns=['中文','詞頻','拼音'])

#print data

data.to_csv('e:/test/dict.csv')

search_dict(10, data)

谷歌輸入法pc版有匯出個人詞庫的功能,格式為.dict

谷歌輸入法的小bug

試用了一下最新的谷歌輸入法,同搜狗沒什麼區別,但是乙個卻發現了乙個谷歌輸入法的小bug,或者說不方便的地方,當要輸入特殊符號時,乙個方法就是用輸入法的軟鍵盤功能,但是用了之後才發現谷歌的卻沒有關閉軟鍵盤的地方,見下圖 但是搜狗卻有乙個很明顯的關閉軟鍵盤的按鈕,下圖 同時,個人覺得軟鍵盤的排列搜狗做的...

python練習小程式

1.今年是否為閏年 import time thisyear time.localtime 0 print time.localtime if thisyear 400 0 or thisyear 4 0 and thisyear 100!0 print this year s is leap ye...

Python小練習三

給出下列文件,但求使用者可以不使用者文字編輯器的情況下修改配置文件 1.只修改backend的配置就可以 2.使用者需要輸入backend,在輸入網域名稱 最後輸入具體配置 the key input 請輸入需要修改的標識1 the value input 請輸入需要修改的標識2 the conte...