diff options
Diffstat (limited to 'progs/a641.py')
-rw-r--r-- | progs/a641.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/progs/a641.py b/progs/a641.py index 1b7e4bb..51393cd 100644 --- a/progs/a641.py +++ b/progs/a641.py @@ -1,5 +1,5 @@ def count_first_elements(test_tup):
- for count, ele in enumerate(test_tup):
- if isinstance(ele, tuple):
- break
- return count
+ for count, ele in enumerate(test_tup):
+ if isinstance(ele, tuple):
+ break
+ return (count)
\ No newline at end of file |