# Chapter 12 example: f-strings with string and integer values. name = "Keiko" level = 7 hp = 95 print(f"{name} (Lv {level}) HP {hp}") # Try changing the f-string so the output reads: # Keiko has 95 HP at level 7