Advertisement
TheDemarti

Bestemmia à-la Giovanni

Jul 16th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.31 KB | None | 0 0
  1. def giovanniBestemmia():
  2.   import random
  3.   tipi = ['Giuda','Buddha','Giove','Zeus']
  4.   attributi = [' porco', ' bastardo', ' maledetto', ' incrociato', ' fulminato',' briccone',' imbecille']
  5.   bestemmiella = tipi[(random.randrange(0,len(tipi)))] + attributi[(random.randrange(0,len(attributi)))]
  6.   return bestemmiella
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement