I\'m trying to create a program and one thing I\'m trying to do is add variables to a string like so.
EnemyHealth = 0 EnemyIs = \'dead\' print(\"The Enem
You can also use print("The Enemy's health is %d. The Enemy is %s." % (EnemyHelath, EnemyIs)), though print("The Enemy's health is {}. The Enemy is {}.".format(EnemyHealth,EnemyIs)) is recommended.
print("The Enemy's health is %d. The Enemy is %s." % (EnemyHelath, EnemyIs))
print("The Enemy's health is {}. The Enemy is {}.".format(EnemyHealth,EnemyIs))