Guest User

Untitled

a guest
Dec 27th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1.  
  2. # python
  3. from random import choice
  4.  
  5. def generate_random_names(iterable1, iterable2):
  6.     print(choice(iterable1) + " " + choice(iterable2))
  7.  
  8. p = ['lul', '2ch', 'sych']
  9.  
  10. k = ['vasyan', 'btard', 'petooh']
  11.  
  12. generate_random_names(p, k) # вызов функции, которая будет тебе принтовать всякое
Add Comment
Please, Sign In to add comment