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
/
a92.py
blob: bd1ef2f9aa3033c5e74d8db1033eae65e8753281 (
plain
)
1
2
3
import
re
def
remove_multiple_spaces
(
text1
):
return
(
re
.
sub
(
' +'
,
' '
,
text1
))