任務要求:編寫一段**,統計字串中單詞出現的次數,將字串及次數儲存在字典中,列印實現以下效果知識點:字串的分割、字典
# coding=utf-8
""" author: 笨笨
date: 2020-12-23
"""# 定義字典
# key:字串,value:次數
dict_1 = {}
str_1 = "welcome to benben's home. welcome to python. but which python version should i use? python 2 or python 3?"
for wd in str_1.split():
# 如果鍵不存在,新增字典元素,值為1
if wd not in dict_1:
dict_1[wd] = 1
# 字典鍵存在,值加1
else:
dict_1[wd] += 1
for key, value in dict_1.items():
print("{}: {}".format(key, value))
Python 程式設計練習
進製轉換 import math def main t int input while t 0 t 1 a,b map int input split if a 0 print end a a if a 0 print 0 end t while a 0 a a bfor i in range le...
程式設計練習5 跳台階
乙隻青蛙一次可以跳上1級台階,也可以跳上2級。求該青蛙跳上乙個n級的台階總共有多少種跳法 先後次序不同算不同的結果 跳第n級台階 n 3 f n 可以跳到第n 1級台階f n 1 或者第 n 2級台階f n 2 也就是可以有f n f n 1 f n 2 可以發現f1 1,f2 2,f3 3,f4 ...
python程式設計練習1
0,設計乙個函式zip lista,listb,repl 輸入兩個列表和佔位符,返回乙個新的列表,列表裡面的每乙個元素是乙個元組,元組的元素是對應同樣順序的在lista和listb中的元素,如果長度不相同,則用佔位符來代替 例如 zip 1,2,3 4,5,6 a 返回 1,4 2,5 3,6 zi...