Skip to content

Instantly share code, notes, and snippets.

@clementi
Created March 1, 2017 21:51
Show Gist options
  • Select an option

  • Save clementi/da05472b0975e44d35d4926942d2c004 to your computer and use it in GitHub Desktop.

Select an option

Save clementi/da05472b0975e44d35d4926942d2c004 to your computer and use it in GitHub Desktop.
Determines whether the supplied bill is constitutional according to the US Constitution.
import time
import random
import sys
import os.path
def main():
if len(sys.argv) < 2:
print("File required.")
else:
if not os.path.exists(sys.argv[1]):
print("The file " + sys.argv[1] + " could not be found.")
else:
print("Analyzing...")
time.sleep(random.randint(1, 3))
print("NO")
if __name__ == '__main__':
main()
@samuelms1
Copy link

So accurate, amazing!!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment