index
:
trinkets
this commit
main
Learning exercises and old or abandoned projects
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
dropcalc
/
util.py
blob: 923765b626777347a476b3ed787f8ca8c7157360 (
plain
) (
blame
)
1
2
3
4
def is_int(x): try: int(x) except ValueError: return False else: return True