Advertisement
pacho_the_python

building_main

Jul 11th, 2022
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. class Building:
  2.     def __init__(self, name, floors):
  3.         self.name = name
  4.         self.floors = floors
  5.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement