выполнить задание по информатике. Язык 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!")
from random import randint
amber={}
noell={}
amber['scet']=0
noell['scet']=0
for i in range(3):
amber["HP"]=100
noell["HP"]=110
amber["Attack"]=40
noell["Attack"]=30
amber["HP"]=amber["HP"] - (noell["Attack"]+randint(1,30))
noell["HP"]=noell["HP"] - (amber["Attack"]+randint(1,30))
if(amber["HP"]>noell["HP"]):
amber['scet']+=1
print(' Раунд {}; Счет:\nАмбер: {}, Ноэлл: {}'.format(i, amber['scet'], noell['scet']))
if(amber["HP"]<noell["HP"]):
noell['scet']+=1
print(' Раунд {}; Счет:\nАмбер: {}, Ноэлл: {}'.format(i, amber['scet'], noell['scet']))
if amber["scet"]>noell["scet"]:
print("amber win!")
else:
print("noell win!")
Объяснение:
ну вот хотя не до конца условие понял