Advertisement
Azelphur

Untitled

May 29th, 2011
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. >>> def isnum(v):
  2. ... try:
  3. ... int(v)
  4. ... return True
  5. ... except ValueError:
  6. ... return False
  7. ...
  8. >>> isnum("hi")
  9. False
  10. >>> isnum("123")
  11. True
  12. >>> isnum(123)
  13. True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement