Advertisement
Guest User

Lukas Bot

a guest
May 25th, 2015
269
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.36 KB | None | 0 0
  1. from random import randint
  2.  
  3. mot = \
  4.     [
  5.          [ 'wow', 'putain', 'eh mais', 'bordel' ],
  6.          [ ' ' ],
  7.          [ 'pouline', 'le Hellfest', 'Aix', 'le respect' ],
  8.          [ ' c\'est ' ],
  9.          [ 'le best truc', 'génial', 'disparu lol' ]
  10.     ]
  11.    
  12. while 1:
  13.     full = ''
  14.     for i in range(len(mot)):
  15.         full += mot[i][randint(0, len(mot[i])-1)]
  16.     print(full)
  17.     continuer = input()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement