miklik

python_OOP1

Feb 7th, 2024 (edited)
1,132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.21 KB | Source Code | 0 0
  1. #Třída
  2. class Car:
  3.   this.brand = ''
  4.   this.type = ''
  5.   this.color = ''
  6.   this.fuel = ''
  7.  
  8.   def get_fullname(self):
  9.     return this.brand + ' ' + this.type
  10.  
  11. #Instance
  12. car1 = Car()
  13. car2 = Car()
  14. car3 = Car()
Advertisement
Add Comment
Please, Sign In to add comment