Skip to content

Instantly share code, notes, and snippets.

@gaspart
Created November 6, 2019 15:24
Show Gist options
  • Save gaspart/5e2150855ef8424746aa5668d2737ccd to your computer and use it in GitHub Desktop.
Save gaspart/5e2150855ef8424746aa5668d2737ccd to your computer and use it in GitHub Desktop.
I Ching generator, work in progress
from random import choice, randint
trigram = ["quian", "kun", "zhen", "kan", "gen", "xun", "li", "dui"]
trigram1 = choice(trigram)
trigram2 = choice(trigram)
print("I Ching says: "+trigram1+"-"+trigram2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment