Attributes

Sign in to test your solution.
# Attributes program # ------------------------- # Subprograms # ------------------------- def make_character(): def save_character(attributes): # ------------------------- # Main program # ------------------------- character = make_character() save_character(character) print("Character saved.")