For this activity you need to type in the following program, but FIX ALL MISTAKES!
You also need to get it to display similar to the sample output
For this first one, I'll be nice, and let you know some of the things to fix!
Fix the missing quotes around strings in the lists.
Correct the error in calculating and printing total_characters.
Ensure the for loop correctly pairs each character with their role.
If you add the planet output, you'll get 15 extra points! That's new code you need to add
Get this program running correctly
Output the latest list of houses AND trait at the end of the program
sorted( my_list ) is the only thing that returns something...
if you try new_list = old_list.sort( ) you'll get NONE
you have to do old_list.sort( ) and then print the list
Make this display as a table or another fun/nice way