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
/
a114.py
blob: 3b13bb496ae1acba8188129b436d7eee32c56c1e (
plain
)
1
2
3
def
str_to_tuple
(
test_str
):
res
=
tuple
(
map
(
int
,
test_str
.
split
(
', '
)))
return
(
res
)