diff options
Diffstat (limited to 'progs/a916.py')
-rw-r--r-- | progs/a916.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/progs/a916.py b/progs/a916.py new file mode 100644 index 0000000..a827408 --- /dev/null +++ b/progs/a916.py @@ -0,0 +1,3 @@ +def tuple_to_float(test_tup):
+ res = float('.'.join(str(ele) for ele in test_tup))
+ return (res)
\ No newline at end of file |