mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-09 07:14:48 +08:00
18 lines
164 B
Python
18 lines
164 B
Python
|
|
#? ['imag']
|
|
[1,2][0].imag
|
|
|
|
a = list()
|
|
#? ['append']
|
|
[a][0].append
|
|
|
|
#? ['append']
|
|
[[a]][0][100].append
|
|
|
|
|
|
a1, b1 = (1, "")
|
|
#? ['real']
|
|
a1.real
|
|
#? ['lower']
|
|
b1.lower
|