Guest User

Untitled

a guest
Jun 24th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1.  
  2. def convert(s):
  3.     return ''.join(string.zfill(ord(c.lower()) - (ord('a') if c not in ('.', ' ') else 0), 2) for c in s)
Add Comment
Please, Sign In to add comment