Lab5B

Instructions

Create a very simple super hero class. Some attributes you will need:

  • Hero Name
  • Real Name
  • Power(s)
  • Colors
  • etc

Requirements

  • Adhere to PEP8 and utilize proper and efficient code
  • Utilize an __init__()
  • Ensure variables are correct type (class vs instance variables)
  • Utilize methods:
    • Start to format your class using getters and setters
  • Create an instance of your class. Populate it with data utilzing an init and/or getters and setters

Additional:

  • Begin using encapsulation techniques