mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-07 22:44:27 +08:00
24 lines
226 B
Python
24 lines
226 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
|
|
|
|
(a2, b2) = (1, "")
|
|
#? ['imag']
|
|
a2.imag
|
|
#? ['upper']
|
|
b2.upper
|