We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc84532 commit d25d7c0Copy full SHA for d25d7c0
code/Week 2/inherit_example.py
@@ -0,0 +1,10 @@
1
+class C():
2
+ num_instances = 0
3
+
4
+ def __init__(self):
5
+ C.num_instances += 1
6
7
+ @staticmethod
8
+ def print_num_instances(): # μέθοδος κλάσης
9
+ print('Πλήθος στιγμιότυπων είναι :{}'.format(C.num_instances))
10
+ # print_num_instances = staticmethod(print_num_instances)
0 commit comments