Guest User

Untitled

a guest
Nov 19th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def all_odd(x):
  2. num_str = str(x)
  3. for c in num_str:
  4. if int(c) % 2 == 0:
  5. return False
  6. return True
Add Comment
Please, Sign In to add comment