Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@v6
Created August 1, 2017 18:55
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 v6/483f93f085520f8d09be7a884580d469 to your computer and use it in GitHub Desktop.
Save v6/483f93f085520f8d09be7a884580d469 to your computer and use it in GitHub Desktop.
// , Want to sound like you know mathematics?
#!/bin/python3
import random
print("Hello?")
nouns = ["plane", "planar coefficients", "structure", "disphrenials", "altcurve", "discontinuity", "conjecture", "aliter", "transport of structure", "isomorphism", "algebraic system"]
adjectives = ["argand", "Euler", "Eilenberg", "arbitrarily prime", "coprime", "genefinite", "modulo out by", "well-defined", "sufficiently nice"]
adverbs = ["arbitrarily", "by way of contradiction", "without loss of generality"]
verbs = ["fly", "b-transport", "translation"]
clauses = ["the following are equivalent", "it obtains that"]
greekletters = ["α", "β", "ξ", "φ"]
symbols = "(ei)1 ≤ i ≤ n"
print ("Let " + random.sample(greekletters, 1)[0] + " be any " + random.sample(adjectives, 1)[0] + " " + random.sample(nouns, 1)[0] + ".")
print ("Let " + random.sample(symbols, 1)[0] + " be a basis for " + random.sample(adjectives, 1)[0] + " " + random.sample(nouns, 1)[0] + random.sample(greekletters, 1)[0] + ".")
print ("There is a " + random.sample(nouns, 1)[0] + " onto the " + random.sample(adjectives, 1)[0] + random.sample(nouns, 1)[0] + ", " + " and by " + random.sample(verbs, 1)[0] + " of this " + random.sample(nouns, 1)[0] + "it obtains that a " + random.sample(nouns, 1)[0] + " is equivalent to " + random.sample(nouns, 1)[0] + ".")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment