Guest User

Untitled

a guest
Sep 15th, 2014
267
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.18 KB | None | 0 0
  1. class A:
  2.  
  3.     def __init__(self):
  4.  
  5.         self._x = 0
  6.  
  7.  
  8.     @property
  9.     def x(self):
  10.  
  11.         return self._x
  12.  
  13.     @x.setter
  14.     def x(self, v):
  15.  
  16.         self._x = v
Advertisement
Add Comment
Please, Sign In to add comment