Skip to content

Instantly share code, notes, and snippets.

@s1s1ty
Created August 24, 2018 18:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s1s1ty/39dfc603cb13c323973383f2525731dd to your computer and use it in GitHub Desktop.
Save s1s1ty/39dfc603cb13c323973383f2525731dd to your computer and use it in GitHub Desktop.
30-days-python-code
#!/bin/python3
S = input().strip()
try:
print(int(S))
except ValueError:
print('Bad String')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment