中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python 好玩游戲的物品清單

發布時間:2020-07-03 18:13:16 來源:網絡 閱讀:468 作者:網絡大神經 欄目:編程語言

Python編程快速上手實踐項目題目,歡迎指證與優化!
你在創建一個好玩的視頻游戲。用于對玩家物品清單建模的數據結構是一個字
典。其中鍵是字符串,描述清單中的物品,值是一個整型值,說明玩家有多少該物
品。例如,字典值{'rope': 1, 'torch': 6, 'gold coin': 42, 'dagger': 1, 'arrow': 12}意味著玩
家有 1 條繩索、 6 個火把、 42 枚金幣等。
寫一個名為 displayInventory()的函數,它接受任何可能的物品清單, 并顯示如下:

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)

運行結果:

Inventory:
1 rope
6 torch
42 gold coin
1 dagger
12 arrow
Total number of items: 62

列表到字典的函數,針對好玩游戲物品清單
假設征服一條龍的戰利品表示為這樣的字符串列表:
dragonLoot = ['gold coin', 'dagger', 'gold coin', 'gold coin', 'ruby']
寫一個名為 addToInventory(inventory, addedItems)的函數, 其中 inventory 參數
是一個字典, 表示玩家的物品清單(像前面項目一樣), addedItems 參數是一個列表,
就像 dragonLoot。
addToInventory()函數應該返回一個字典, 表示更新過的物品清單。請注意, 列
表可以包含多個同樣的項。你的代碼看起來可能像這樣:

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)

運行結果:

Inventory:
45 gold coin
1 rope
1 dagger
1 ruby
Total number of items: 48
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

博乐市| 黄山市| 永平县| 威远县| 安图县| 贞丰县| 富宁县| 石楼县| 河曲县| 六枝特区| 武义县| 永和县| 敦煌市| 黄梅县| 栖霞市| 江津市| 孝义市| 井冈山市| 大关县| 大港区| 滦平县| 望江县| 章丘市| 随州市| 灌阳县| 河池市| 北碚区| 岳阳市| 合川市| 莱阳市| 平顺县| 富源县| 东平县| 巴彦县| 紫阳县| 筠连县| 乌审旗| 石棉县| 庄河市| 陆河县| 固原市|