I wrote this programm
#!/usr/bin/env python
"""
"""
import random
def CollectStrings():
string_list = []
while True:
string = raw_input("What is your question: (enter to quit): ")
if not string:
return string_list
string_list.append(string)
def ChooseStrings(how_many):
string_list = CollectStrings()
chosen = random.sample(string_list, how_many)
chosen.sort()
return ', '.join(chosen)
print ChooseStrings (3)
But I need to make this program randomly answer questions, like an 8ball. How would I do that?
