index
:
clp
main
A small Python compiler with optimizer written in Java
dcariotti
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
progs
/
a916.py
blob: a827408699a9b1b91ee17acd34b775bbaec42f91 (
plain
)
1
2
3
def
tuple_to_float
(
test_tup
):
res
=
float
(
'.'
.
join
(
str
(
ele
)
for
ele
in
test_tup
))
return
(
res
)