diff options
Diffstat (limited to 'progs/a348.py')
-rw-r--r-- | progs/a348.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/progs/a348.py b/progs/a348.py new file mode 100644 index 0000000..8d1cbe4 --- /dev/null +++ b/progs/a348.py @@ -0,0 +1,5 @@ +def count_digs(tup):
+ return sum([len(str(ele)) for ele in tup ])
+def sort_list(test_list):
+ test_list.sort(key = count_digs)
+ return (str(test_list))
\ No newline at end of file |