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
/
a126.py
blob: f344bda5f2e0a061a28b00c0f9e23bdc9eafe711 (
plain
)
1
2
3
4
import
re
def
remove_char
(
S
):
result
=
re
.
sub
(
'[\W_]+'
,
''
,
S
)
return
result