Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. import re
  2. def problema1s(m):
  3. r = re.compile('\w+')
  4. matches = r.findall(m)
  5. return sorted(matches)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement