Помогите пожалуйста выполнить задание по информатике. Язык Python

Устройте несколько дуэлей подряд и выведите результаты (их можно хранить в словаре).
В награду за победу персонажу можно увеличивать очки здоровья.
Как еще можно разнообразить эту игру?

Исходный код:
import random
amber={}
noell={}
amber["HP"]=100
noell["HP"]=150
amber["Attack"]=30
noell["Attack"]=20
while amber["HP"]>0 and noell["HP"]>0:
amber["HP"]=amber["HP"] - (noell["Attack"]+random.randint(1,30))
noell["HP"]=noell["HP"] - amber["Attack"]-random.randint(1,30)
print("Эмбер здоровье",amber["HP"] )
print("Ноэлль здоровье",noell["HP"] )

if amber["HP"]>noell["HP"]:
print("amber win!")
else:
print("noell win!")
Please enter comments
Please enter your name.
Please enter the correct email address.
You must agree before submitting.

Answers & Comments


Copyright © 2024 SCHOLAR.TIPS - All rights reserved.