could any one tell me what went wrong with my code
# The smaller ogres here do more damage!
# Attack the ogres with the least health first.
while True:
weakest = None
leastHealth = 99999
enemyIndex = 0
enemies = hero.findEnemies()
# Loop through all enemies.
while enemyIndex < len(enemies):
# If an enemy's health is less than leastHealth,
enemy = enemies[enemyIndex]
if enemy.health < leastHealth:
# make it the weakest and set leastHealth to its health.
enemy = weakest
enemy.health = leastHealth
if weakest:
# Attack the weakest ogre.
hero.attack(weakest)
pass
enemy.health = leastHealth, the system say this code that "Type Error: can’t write property of non=object type:health.
many thx…