Advertisement
Cobble5tone

Untitled

Sep 28th, 2019
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.22 KB | None | 0 0
  1. class testclass():
  2.     def __init__(self):
  3.         self.cardval = 10
  4.  
  5.  
  6.  
  7.  
  8. class testclass2:
  9.     def __init__(self):
  10.         self.cardval2 = testclass().cardval + 10
  11.         print(self.cardval2)
  12.  
  13.  
  14. test = testclass2()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement