Advertisement
RedstoneHair

Example class variables?

Oct 26th, 2022
721
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. Class ExampleA:
  2.     some_variable = 1
  3.  
  4. Class ExampleB:
  5.     def __init__(self, some_variable):
  6.         self.some_variable = some_variable
  7.  
  8. Class ExampleB:
  9.     some_variable = 1
  10.     def __init__(self, some_variable):
  11.         self.some_variable = some_variable
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement