# Homework 11, problem 3: Rename and reassign. # # The three variables below have unhelpful names. Their VALUES hint # at what they really are. Your job: # 1. Rename each to something meaningful. # 2. Print all three with labels. # 3. Change each variable to a new value. # 4. Print all three again. # # Run with: python exercises/11/homework/03-rename-and-reassign.py a = "Sword of Light" b = 12 c = True # Your code goes here: