Python編程快速上手實踐項目題目,歡迎指證與優(yōu)化!
你在創(chuàng)建一個好玩的視頻游戲。用于對玩家物品清單建模的數(shù)據(jù)結(jié)構(gòu)是一個字
典。其中鍵是字符串,描述清單中的物品,值是一個整型值,說明玩家有多少該物
品。例如,字典值{'rope': 1, 'torch': 6, 'gold coin': 42, 'dagger': 1, 'arrow': 12}意味著玩
家有 1 條繩索、 6 個火把、 42 枚金幣等。
寫一個名為 displayInventory()的函數(shù),它接受任何可能的物品清單, 并顯示如下:
10年積累的成都網(wǎng)站建設(shè)、做網(wǎng)站經(jīng)驗,可以快速應(yīng)對客戶對網(wǎng)站的新想法和需求。提供各種問題對應(yīng)的解決方案。讓選擇我們的客戶得到更好、更有力的網(wǎng)絡(luò)服務(wù)。我雖然不認識你,你也不認識我。但先建設(shè)網(wǎng)站后付款的網(wǎng)站建設(shè)流程,更有比如免費網(wǎng)站建設(shè)讓你可以放心的選擇與我們合作。
stuff = {'rope': 1, 'torch': 6, 'gold coin': 42, 'dagger': 1, 'arrow': 12}
def displayInventory(inventory):
print("Inventory:")
item_total = 0
for k, v in inventory.items():
print(str(v) + ' ' + k)
item_total += v
print("Total number of items: " + str(item_total))
displayInventory(stuff)
運行結(jié)果:
Inventory:
1 rope
6 torch
42 gold coin
1 dagger
12 arrow
Total number of items: 62
列表到字典的函數(shù),針對好玩游戲物品清單
假設(shè)征服一條龍的戰(zhàn)利品表示為這樣的字符串列表:
dragonLoot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
寫一個名為 addToInventory(inventory, addedItems)的函數(shù), 其中 inventory 參數(shù)
是一個字典, 表示玩家的物品清單(像前面項目一樣), addedItems 參數(shù)是一個列表,
就像 dragonLoot。
addToInventory()函數(shù)應(yīng)該返回一個字典, 表示更新過的物品清單。請注意, 列
表可以包含多個同樣的項。你的代碼看起來可能像這樣:
def addToInventory(inventory, addedItems):
# your code goes here
inv = {'gold coin': 42, 'rope': 1}
dragonLoot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
inv = addToInventory(inv, dragonLoot)
displayInventory(inv)
新代碼:
stuff = {'rope': 1, 'torch': 6, 'gold coin': 42, 'dagger': 1, 'arrow': 12}
def displayInventory(inventory):
print("Inventory:")
item_total = 0
for k, v in inventory.items():
print(str(v) + ' ' + k)
item_total += v
print("Total number of items: " + str(item_total))
#displayInventory(stuff)
def addToInventory(inventory, addedItems):
# your code goes here
for i in addedItems:
if i in inventory.keys():
inventory[i] += 1
else:
inventory.setdefault(i,1)
return inventory
inv = {'gold coin': 42, 'rope': 1}
dragonLoot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
inv = addToInventory(inv, dragonLoot)
displayInventory(inv)
運行結(jié)果:
Inventory:
45 gold coin
1 rope
1 dagger
1 ruby
Total number of items: 48