mirror of
https://github.com/davidhalter/jedi.git
synced 2026-01-16 00:46:43 +08:00
20 lines
258 B
Python
20 lines
258 B
Python
if isinstance(i, str):
|
|
#? str()
|
|
i
|
|
|
|
if isinstance(j, (str, int)):
|
|
#? str() int()
|
|
j
|
|
|
|
while isinstance(k, (str, int)):
|
|
#? str() int()
|
|
k
|
|
|
|
if not isinstance(k, (str, int)):
|
|
#?
|
|
k
|
|
|
|
while not isinstance(k, (str, int)):
|
|
#?
|
|
k
|