diff options
Diffstat (limited to 'progs/a506.py')
-rw-r--r-- | progs/a506.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a506.py b/progs/a506.py new file mode 100644 index 0000000..4104ad8 --- /dev/null +++ b/progs/a506.py @@ -0,0 +1,5 @@ +def find_lists(Input):
+ if isinstance(Input, list):
+ return 1
+ else:
+ return len(Input)
\ No newline at end of file |