開啟並讀取檔案
file = open(r』c:\users\administrator\desktop\walden.txt』,『r』)
lines = file.readlines()
words =
for line in lines:
tmp_list = line.split()
for word in tmp_list:
對word_count字典進行排序,按照出現的次數(value)進行降序排序
對words中每乙個元素出現的個數
把統計結果儲存到字典中,字典的key是單詞,value是單詞出現的次數
words_count = {}`在這裡插入**片`
word_set = set(words)
for word in words_set:
count_num = words.count(word)
word_count[word] = count_num
sorted(word_count.item(),key = lambda item: item[1],reverse = true)
writing wordcount.py
vc開啟並讀取txt檔案
讓使用者選擇檔案進行開啟和儲存操作時,就要用到檔案開啟 儲存對話方塊。mfc的類 cfiledialog 用於實現這種功能。使用 cfiledialog 宣告乙個物件時,第乙個bool型引數用於指定檔案的開啟或儲存,當為true時將構造乙個檔案開啟對話方塊,為false時構造乙個檔案儲存對話方塊。在...
Qt入門 選擇路徑開啟檔案並讀取檔案
使用qfiledialog可以呼叫當前系統的檔案對話方塊 包含標頭檔案 include 1 開啟選擇路徑對話方塊讀取路徑名 qstring getopenfilename qwidget parent 0,const qstring caption qstring const qstring dir...
MATLAB開啟nc檔案並讀取nc檔案資料
ncdisp e nc 輸入該命令後命令列視窗會顯示該nc檔案的基本資訊 根據上一步中nc檔案的基本資訊提取nc檔案的相應資料。time ncread e nc time 首先,將所需要的資料提取出來 start 125,89,123 count 17,14,124 tmax ncread e nc...