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
/
a673.py
blob: 5b99fc86d38d4979684b1123f81aa81fc861d0ea (
plain
)
1
2
3
def
string_to_tuple
(
str1
):
result
=
tuple
(
x
for
x
in
str1
if
not
x
.
isspace
())
return
result