index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a506.py
blob: 4104ad884bbad6b158c4cf7a36760adb7e833f88 (
plain
)
1
2
3
4
5
def
find_lists
(
Input
):
if
isinstance
(
Input
,
list
):
return
1
else
:
return
len
(
Input
)