'F' → Fullscreen
Create a new Python program named 1-5-reassignment.
health variable set to 100 and a score variable set to 0.health = 100score = 0
print("Health:", health)print("Score:", score)#health to itself minus 30.health = 100score = 0
print("Health:", health)print("Score:", score)
health = health - 30print("Health:", health)#score to itself plus 50, then print it.score to itself plus 25 a second time, then print it again.health = 100score = 0
print("Health:", health)print("Score:", score)
health = health - 30print("Health:", health)
score = score + 50print("Score:", score)
score = score + 25print("Score:", score)#health one more time to represent healing (add some points back), then print the updated value.Verify your program works correctly.
Health: 100Score: 0Health: 70Score: 50Score: 75Answer the following questions before submitting your work.
health = something. What is different about what Python does the second time?health = health - 30, which value does Python use to compute the right side of the = — the old value or the new value?Submit the required files to the appropriate dropbox.