Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from random import choice, randint
- adjectives = ["happy", "hungry", "thirsty", "relentless", "rigid", "idle", "programmable", "obscure" , "sad" , "jealous"];
- nouns = ["books","burgers","apples","shoes","socks","finger","eyes","song","tenor","bass"]
- first_word = choice(adjectives)
- second_word = choice(nouns)
- first_number = randint(0,9)
- second_number = randint(0,9)
- first_number = str(first_number)
- second_number = str(second_number)
- print("Your username is " + first_word + second_word + first_number + second_number)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement