Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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?

share|improve this question
3  
You should rephrase your question to something specific. "Can you write this program for me" isn't specific. What do you understand about your program? Where do you think the issue is? What have you tried? – Greg B Feb 9 '12 at 9:36

2 Answers

Add all answers to a list and than use random.choices to get a random answer:

import random

answers = [
    "The answer lies in your heart",
    "I do not know",
    "Almost certainly",
    "No",
    "Yes",
    "Why do you need to ask?",
    "Go away. I do not wish to answer at this time.",
    "Time will only tell",
]
print random.choice(answers) // Print random answer
share|improve this answer

google result: http://www.hawkee.com/snippet/6820/

share|improve this answer
It didn't work(( – Esenbek Aliev Feb 9 '12 at 5:58
why you made a minus 1?? – Esenbek Aliev Feb 9 '12 at 5:59
that was someone else ;-) – Robert Peters Feb 9 '12 at 6:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.