Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active December 5, 2019 17:37
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 garystafford/a4d7be95d516273d25b646810aba192e to your computer and use it in GitHub Desktop.
Save garystafford/a4d7be95d516273d25b646810aba192e to your computer and use it in GitHub Desktop.
#!/usr/bin/python3
import random
technologies = [
'PySpark', 'Python', 'Spark', 'Scala', 'Java', 'Project Jupyter', 'R'
]
print("Technologies: %s\n" % technologies)
technologies.sort()
print("Sorted: %s\n" % technologies)
print("I'm interested in learning about %s." % random.choice(technologies))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment