11 lines
129 B
Python
Raw Normal View History

2023-05-24 00:51:13 +08:00
class Test:
def __getitem__(self, key):
return key
t = Test()
assert t[1] == 1
assert t['a'] == 'a'
print("PASS")