PY
py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Me:
def __init__(self, name, complexion):
self.name = name
self.complexion = complexion
def TOEFL(self):
print("You've failed")
class Loophole:
def TOEFL(self):
print("You've succeeded")
me = Me("VH","Fair")
me.TOEFL()
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run