Advertisement
Blessing988

Untitled

Mar 29th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.28 KB | None | 0 0
  1. class SuperHero(): #the class should start with a Capital letter
  2.     pass
  3.  
  4.  
  5. spiderman = SuperHero()  #the variable name must be in lowercase
  6.  
  7.  
  8. batman = SuperHero()     #the variable name must be in lowercase
  9.  
  10.  
  11. superman = SuperHero()   #the variable name must be in lowercase
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement