Please help!


part one: design the program

write a program to define a superhero class, set attributes and call the methods. use the following guidelines to write your program:

look over the code that starts the superhero class. you may use this code as a starting point. come up with two additional attributes and one method to add to the class. be creative! some attributes could be a motto, villain, strength, weakness, or alter ego. an action might be saveworld() or transformhero().
class superhero:

# superhero class represents the facts related to a superhero.

def __init__(self, name = "", strengthpts = 0):

# create a new superhero with a name and other attributes.

self.name = name
self.strengthpts = strengthpts

def addstrengthpts(self, points):

# adds points to the superhero's strength.

self.strengthpts = self.strengthpts + points

update the class by including at least two new attributes and one new method.
in the main() method, create your superhero. be sure to assign values to its attributes and call its methods.
create output that describes your superhero in a story fashion or a series of events.
write the pseudocode for this program. be sure to include any needed input, calculations, and output.
insert your pseudocode here: