I've been working on a game, and I'm trying to go to random functions. Here's my code:
import random
def choice1():
print("This is in choice 1 right now.")
def choice2():
print("This is in choice 2 right now.")
def choice3():
print("This is in choice 3 right now.")
room_list = [choice1, choice2, choice3]
new_room = random.choice(room_list)
Just calling the variable doesn't work. Any help would be appreciated. Thanks!