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 a9143bc commit 2e657f9Copy full SHA for 2e657f9
2_intermediate/chapter12/practice/teacher_class.py
@@ -7,8 +7,8 @@
7
8
# Student class implemented below. Teacher class uses it.
9
10
-class Student:
11
+class Student:
12
def __init__(self, name, age):
13
self.name = name
14
self.age = age
@@ -18,4 +18,3 @@ def raiseHand(self):
18
19
def growOlder(self):
20
self.age += 1
21
-
0 commit comments