Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active November 17, 2018 15:06
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/6fa735295531fbaaf3a8265fa33a648b to your computer and use it in GitHub Desktop.
Save garystafford/6fa735295531fbaaf3a8265fa33a648b to your computer and use it in GitHub Desktop.
#!/usr/bin/python
import random
technologies = ['PySpark', 'Python', 'Spark', 'Scala', 'JVM',
'Project Jupyter', 'PostgreSQL']
print("Technologies: %s" % technologies)
technologies.sort()
print("Sorted: %s" % technologies)
print("I'm interested in learning %s." % random.choice(technologies))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment