Guest User

Untitled

a guest
Nov 14th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. #!/usr/bin/python
  2.  
  3. import random
  4.  
  5. technologies = ['PySpark', 'Python', 'Spark', 'Scala', 'JVM', 'Project Jupyter', 'PostgreSQL']
  6. print("Technologies: %s" % technologies)
  7.  
  8. technologies.sort()
  9. print("Sorted: %s" % technologies)
  10.  
  11. print("I'm interested in learning %s." % random.choice(technologies))
Add Comment
Please, Sign In to add comment