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
Use print with format, it makes your code look good
format
print("The Enemy's health is {} The Enemy is {}".format(str(EnemyHealth),EnemyIs)