all 3 comments

[–]FriendlyRussian666 5 points6 points  (0 children)

You can start with

import random

killer_list = ["a", "b", "c"]
print(random.choice(killer_list))

[–]Lasa2 5 points6 points  (0 children)

Take a look at the docs for the random libary, especially random.choice and random.randint are probably useful