diff options
Diffstat (limited to 'progs/a519.py')
-rw-r--r-- | progs/a519.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/a519.py b/progs/a519.py new file mode 100644 index 0000000..04b5055 --- /dev/null +++ b/progs/a519.py @@ -0,0 +1,3 @@ +def tuple_int_str(tuple_str):
+ result = tuple((int(x[0]), int(x[1])) for x in tuple_str)
+ return result
\ No newline at end of file |