mirror of
https://gitee.com/Lyon1998/pikapython.git
synced 2025-01-15 17:02:53 +08:00
11 lines
129 B
Python
11 lines
129 B
Python
|
|
class Test:
|
|
def __getitem__(self, key):
|
|
return key
|
|
|
|
|
|
t = Test()
|
|
assert t[1] == 1
|
|
assert t['a'] == 'a'
|
|
print("PASS")
|