Untitled
unknown
plain_text
a year ago
202 B
5
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