二手产品经理

二手产品经理

THIS IS RENO

陣列練習 - 42天 - 在線學習python100天

記錄#

  1. 今天沒有知識點學習,只有編程訓練。
  2. 編寫一個寶可夢的字典,具有輸入和列印功能。列印時要根據寵物屬性輸出對應顏色的文字。
  3. 對齊這部分還是不熟練,需要多做練習。

CODE#

print("👾 MokéBeast - The Non-Copyright Generic Beast Battle Game 👾")
print()

def color(c):
  if c == "fire":
    print("\033[31m")
  if c == "water":
    print("\033[34m")
  if c == "electricity":
    print("\033[33m")
  if c == "grass":
    print("\033[32m")
  if c == "poison":
    print("\033[35m")

moke = {"name":None, "type":None, "move":None, "HP":None, "MP":None, }

for name in moke.keys():
  moke[name]=input(f"輸入您的寶獸的 {name} > ")

for name,value in moke.items():
  color(moke['move'])
  print(f"{name: <15}:{value}")
載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。