Advertisement
rave1

klasy python

Jul 24th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. class Auto:
  2.     def __init__(self):
  3.         self.marka="audi"
  4.         self.rocznik=1990
  5.        
  6. auto=Auto()
  7. print(auto.marka)
  8. print(auto.rocznik)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement