Advertisement
Dammiejoy20

Untitled

Mar 29th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. # Class declaration with no body
  2. class Superhero():
  3.     pass
  4.  
  5. # Assigning variables to instantiated objects
  6. spiderman = Superhero()
  7. batman = Superhero()
  8. superman = Superhero()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement