cromulon.py 423 B

12345678910111213141516171819202122
  1. #!/usr/bin/python3
  2. import random
  3. from os.path import dirname
  4. statements = [
  5. "SHOW ME WHAT YOU GOT",
  6. "I LIKE WHAT YOU GOT",
  7. "DISQUALIFIED",
  8. "*fartsound*"
  9. ]
  10. if __name__ == "__main__":
  11. ROOT = dirname(__file__)
  12. cromulon = open(ROOT + "/cromulon.txt","r")
  13. print(cromulon.read())
  14. cromulon.close()
  15. print(" "*45 + statements[int(random.random()*100)%len(statements)])
  16. print("\n\n")