# Homework 12, problem 2: Stat line. # # Use an f-string to print one line in this exact shape (the gap # after the name is two spaces; the gap after the level value is # three spaces): # # Keiko Lv 7 HP 95 # # Run with: python exercises/12/homework/02-stat-line.py name = "Keiko" level = 7 hp = 95 # Your code goes here: