Spaces:
Runtime error
Runtime error
File size: 633 Bytes
be5d475 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
import random
def get_random_name():
famous_painters = [
"Leonardo", "DaVinci",
"Michelangelo",
"Pablo", "Picasso",
"Vincent", "VanGogh",
"Rembrandt", "VanRijn",
"Claude", "Monet",
"Salvador", "Dali",
"Jackson", "Pollock",
"Andy", "Warhol",
"Henri", "Matisse",
"Georgia", "Keeffe",
"Edvard", "Munch",
"Wassily", "Kandinsky",
"Gustav", "Klimt",
"Rene", "Magritte",
"Frida", "Kahlo",
"Edgar", "Degas",
"Johannes", "Vermeer",
"Paul", "Cezanne",
"Marc", "Chagall",
]
random_painter = random.choice(famous_painters)
return random_painter
|