Untitled

Anonymous
plain_text
09/03/2024 3:52 PM
272 B
14
Indexable
import random

def draw_name():
    names = ['Alice', 'Bob', 'Charlie', 'Diana', 'Ethan']
    selected_name = random.choice(names)
    print(f'The selected name is: {selected_name}')

draw_name()
Editor is loading...
Leave a Comment