的名單,我想知道哪些主題標籤都採用最在鳴叫,所以我做這樣的排序類型的字典
cursor = db.execute("SELECT text FROM myTable WHERE text LIKE '%#%' ")
for row in cursor:
for word in (re.findall(r"#(\w+)", row[0])):
top_hashtags.append(word)
top_hashtags = {i:top_hashtags.count(i) for i in set(top_hashtags)}
print sorted(top_hashtags, key=lambda x: x[0])
結果是錯誤的。
我用過:print sorted(top_hashtags, key=lambda x: x[0])
但我認爲它不是像我想要的那樣工作。
這裏沒有任何詞典列表。 –
當你輸入這段代碼時,top_hashtags是什麼類型,你爲什麼將它改寫爲字典? – geoffspear