記錄#
- 今天沒有知識點學習,只有編程訓練。
- 編寫一個寶可夢的字典,具有輸入和列印功能。列印時要根據寵物屬性輸出對應顏色的文字。
- 對齊這部分還是不熟練,需要多做練習。
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}")