Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. import sys
  2. import random
  3.  
  4. def main():
  5. print("Welcome to the Psych 'Sidekick Name Picker.\n")
  6. print("A name just like Sean would pick for Gus:\n\n")
  7.  
  8. first = ('Baby Oil' , 'Bad News' , 'Big Burps' , 'Pill Muncher', 'Old Head' , 'Crack Nose' , 'Chi' , 'nk' , 'Chad' , 'Cleet' , 'Bootlicker' , 'Bush Did 9/11' , 'now yuo see' , 'libertarian joker' , 'on my momma doe')
  9.  
  10. last = ('Shrek' , 'Moosenose', 'is this a date' , 'poop' , 'obama' , 'alex jones' , 'rosa parks stole my bus seat' , 'womans rights' , 'fried chicken doe' , 'rabbi schwartz' , 'nick biglin on the beat')
  11.  
  12.  
  13. secure_random = random.SystemRandom()
  14. print(secure_random.choice((first),(last))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement