Jan-03-2018, 11:39 PM
I have the source code for eliza. I am getting a syntax error.line 260, says missing parentheses in my print statement. can someone, straiten me out. I am trying to learn python.
Run it with python eliza.py and see if you can trip it up. Try not to spill your guts to your new computer therapist!
You will notice that most of the source
import re import random reflections = { "am": "are", "was": "were", "i": "you", "i'd": "you would", "i've": "you have", "i'll": "you will", "my": "your", "are": "am", "you've": "I have", "you'll": "I will", "your": "my", "yours": "mine", "you": "me", "me": "you" } psychobabble = [ [r'I need (.*)', ["Why do you need {0}?", "Would it really help you to get {0}?", "Are you sure you need {0}?"]], [r'Why don\'?t you ([^\?]*)\??', ["Do you really think I don't {0}?", "Perhaps eventually I will {0}.", "Do you really want me to {0}?"]], [r'Why can\'?t I ([^\?]*)\??', ["Do you think you should be able to {0}?", "If you could {0}, what would you do?", "I don't know -- why can't you {0}?", "Have you really tried?"]], [r'I can\'?t (.*)', ["How do you know you can't {0}?", "Perhaps you could {0} if you tried.", "What would it take for you to {0}?"]], [r'I am (.*)', ["Did you come to me because you are {0}?", "How long have you been {0}?", "How do you feel about being {0}?"]], [r'I\'?m (.*)', ["How does being {0} make you feel?", "Do you enjoy being {0}?", "Why do you tell me you're {0}?", "Why do you think you're {0}?"]], [r'Are you ([^\?]*)\??', ["Why does it matter whether I am {0}?", "Would you prefer it if I were not {0}?", "Perhaps you believe I am {0}.", "I may be {0} -- what do you think?"]], [r'What (.*)', ["Why do you ask?", "How would an answer to that help you?", "What do you think?"]], [r'How (.*)', ["How do you suppose?", "Perhaps you can answer your own question.", "What is it you're really asking?"]], [r'Because (.*)', ["Is that the real reason?", "What other reasons come to mind?", "Does that reason apply to anything else?", "If {0}, what else must be true?"]], [r'(.*) sorry (.*)', ["There are many times when no apology is needed.", "What feelings do you have when you apologize?"]], [r'Hello(.*)', ["Hello... I'm glad you could drop by today.", "Hi there... how are you today?", "Hello, how are you feeling today?"]], [r'I think (.*)', ["Do you doubt {0}?", "Do you really think so?", "But you're not sure {0}?"]], [r'(.*) friend (.*)', ["Tell me more about your friends.", "When you think of a friend, what comes to mind?", "Why don't you tell me about a childhood friend?"]], [r'Yes', ["You seem quite sure.", "OK, but can you elaborate a bit?"]], [r'(.*) computer(.*)', ["Are you really talking about me?", "Does it seem strange to talk to a computer?", "How do computers make you feel?", "Do you feel threatened by computers?"]], [r'Is it (.*)', ["Do you think it is {0}?", "Perhaps it's {0} -- what do you think?", "If it were {0}, what would you do?", "It could well be that {0}."]], [r'It is (.*)', ["You seem very certain.", "If I told you that it probably isn't {0}, what would you feel?"]], [r'Can you ([^\?]*)\??', ["What makes you think I can't {0}?", "If I could {0}, then what?", "Why do you ask if I can {0}?"]], [r'Can I ([^\?]*)\??', ["Perhaps you don't want to {0}.", "Do you want to be able to {0}?", "If you could {0}, would you?"]], [r'You are (.*)', ["Why do you think I am {0}?", "Does it please you to think that I'm {0}?", "Perhaps you would like me to be {0}.", "Perhaps you're really talking about yourself?"]], [r'You\'?re (.*)', ["Why do you say I am {0}?", "Why do you think I am {0}?", "Are we talking about you, or me?"]], [r'I don\'?t (.*)', ["Don't you really {0}?", "Why don't you {0}?", "Do you want to {0}?"]], [r'I feel (.*)', ["Good, tell me more about these feelings.", "Do you often feel {0}?", "When do you usually feel {0}?", "When you feel {0}, what do you do?"]], [r'I have (.*)', ["Why do you tell me that you've {0}?", "Have you really {0}?", "Now that you have {0}, what will you do next?"]], [r'I would (.*)', ["Could you explain why you would {0}?", "Why would you {0}?", "Who else knows that you would {0}?"]], [r'Is there (.*)', ["Do you think there is {0}?", "It's likely that there is {0}.", "Would you like there to be {0}?"]], [r'My (.*)', ["I see, your {0}.", "Why do you say that your {0}?", "When your {0}, how do you feel?"]], [r'You (.*)', ["We should be discussing you, not me.", "Why do you say that about me?", "Why do you care whether I {0}?"]], [r'Why (.*)', ["Why don't you tell me the reason why {0}?", "Why do you think {0}?"]], [r'I want (.*)', ["What would it mean to you if you got {0}?", "Why do you want {0}?", "What would you do if you got {0}?", "If you got {0}, then what would you do?"]], [r'(.*) mother(.*)', ["Tell me more about your mother.", "What was your relationship with your mother like?", "How do you feel about your mother?", "How does this relate to your feelings today?", "Good family relations are important."]], [r'(.*) father(.*)', ["Tell me more about your father.", "How did your father make you feel?", "How do you feel about your father?", "Does your relationship with your father relate to your feelings today?", "Do you have trouble showing affection with your family?"]], [r'(.*) child(.*)', ["Did you have close friends as a child?", "What is your favorite childhood memory?", "Do you remember any dreams or nightmares from childhood?", "Did the other children sometimes tease you?", "How do you think your childhood experiences relate to your feelings today?"]], [r'(.*)\?', ["Why do you ask that?", "Please consider whether you can answer your own question.", "Perhaps the answer lies within yourself?", "Why don't you tell me?"]], [r'quit', ["Thank you for talking with me.", "Good-bye.", "Thank you, that will be $150. Have a good day!"]], [r'(.*)', ["Please tell me more.", "Let's change focus a bit... Tell me about your family.", "Can you elaborate on that?", "Why do you say that {0}?", "I see.", "Very interesting.", "{0}.", "I see. And what does that tell you?", "How does that make you feel?", "How do you feel when you say that?"]] ] def reflect(fragment): tokens = fragment.lower().split() for i, token in enumerate(tokens): if token in reflections: tokens[i] = reflections[token] return ' '.join(tokens) def analyze(statement): for pattern, responses in psychobabble: match = re.match(pattern, statement.rstrip(".!")) if match: response = random.choice(responses) return response.format(*[reflect(g) for g in match.groups()]) def main(): print "Hello. How are you feeling today?" while True: statement = raw_input("> ") print analyze(statement) if statement == "quit": break if __name__ == "__main__": main() 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 import re import random reflections = { "am": "are", "was": "were", "i": "you", "i'd": "you would", "i've": "you have", "i'll": "you will", "my": "your", "are": "am", "you've": "I have", "you'll": "I will", "your": "my", "yours": "mine", "you": "me", "me": "you" } psychobabble = [ [r'I need (.*)', ["Why do you need {0}?", "Would it really help you to get {0}?", "Are you sure you need {0}?"]], [r'Why don\'?t you ([^\?]*)\??', ["Do you really think I don't {0}?", "Perhaps eventually I will {0}.", "Do you really want me to {0}?"]], [r'Why can\'?t I ([^\?]*)\??', ["Do you think you should be able to {0}?", "If you could {0}, what would you do?", "I don't know -- why can't you {0}?", "Have you really tried?"]], [r'I can\'?t (.*)', ["How do you know you can't {0}?", "Perhaps you could {0} if you tried.", "What would it take for you to {0}?"]], [r'I am (.*)', ["Did you come to me because you are {0}?", "How long have you been {0}?", "How do you feel about being {0}?"]], [r'I\'?m (.*)', ["How does being {0} make you feel?", "Do you enjoy being {0}?", "Why do you tell me you're {0}?", "Why do you think you're {0}?"]], [r'Are you ([^\?]*)\??', ["Why does it matter whether I am {0}?", "Would you prefer it if I were not {0}?", "Perhaps you believe I am {0}.", "I may be {0} -- what do you think?"]], [r'What (.*)', ["Why do you ask?", "How would an answer to that help you?", "What do you think?"]], [r'How (.*)', ["How do you suppose?", "Perhaps you can answer your own question.", "What is it you're really asking?"]], [r'Because (.*)', ["Is that the real reason?", "What other reasons come to mind?", "Does that reason apply to anything else?", "If {0}, what else must be true?"]], [r'(.*) sorry (.*)', ["There are many times when no apology is needed.", "What feelings do you have when you apologize?"]], [r'Hello(.*)', ["Hello... I'm glad you could drop by today.", "Hi there... how are you today?", "Hello, how are you feeling today?"]], [r'I think (.*)', ["Do you doubt {0}?", "Do you really think so?", "But you're not sure {0}?"]], [r'(.*) friend (.*)', ["Tell me more about your friends.", "When you think of a friend, what comes to mind?", "Why don't you tell me about a childhood friend?"]], [r'Yes', ["You seem quite sure.", "OK, but can you elaborate a bit?"]], [r'(.*) computer(.*)', ["Are you really talking about me?", "Does it seem strange to talk to a computer?", "How do computers make you feel?", "Do you feel threatened by computers?"]], [r'Is it (.*)', ["Do you think it is {0}?", "Perhaps it's {0} -- what do you think?", "If it were {0}, what would you do?", "It could well be that {0}."]], [r'It is (.*)', ["You seem very certain.", "If I told you that it probably isn't {0}, what would you feel?"]], [r'Can you ([^\?]*)\??', ["What makes you think I can't {0}?", "If I could {0}, then what?", "Why do you ask if I can {0}?"]], [r'Can I ([^\?]*)\??', ["Perhaps you don't want to {0}.", "Do you want to be able to {0}?", "If you could {0}, would you?"]], [r'You are (.*)', ["Why do you think I am {0}?", "Does it please you to think that I'm {0}?", "Perhaps you would like me to be {0}.", "Perhaps you're really talking about yourself?"]], [r'You\'?re (.*)', ["Why do you say I am {0}?", "Why do you think I am {0}?", "Are we talking about you, or me?"]], [r'I don\'?t (.*)', ["Don't you really {0}?", "Why don't you {0}?", "Do you want to {0}?"]], [r'I feel (.*)', ["Good, tell me more about these feelings.", "Do you often feel {0}?", "When do you usually feel {0}?", "When you feel {0}, what do you do?"]], [r'I have (.*)', ["Why do you tell me that you've {0}?", "Have you really {0}?", "Now that you have {0}, what will you do next?"]], [r'I would (.*)', ["Could you explain why you would {0}?", "Why would you {0}?", "Who else knows that you would {0}?"]], [r'Is there (.*)', ["Do you think there is {0}?", "It's likely that there is {0}.", "Would you like there to be {0}?"]], [r'My (.*)', ["I see, your {0}.", "Why do you say that your {0}?", "When your {0}, how do you feel?"]], [r'You (.*)', ["We should be discussing you, not me.", "Why do you say that about me?", "Why do you care whether I {0}?"]], [r'Why (.*)', ["Why don't you tell me the reason why {0}?", "Why do you think {0}?"]], [r'I want (.*)', ["What would it mean to you if you got {0}?", "Why do you want {0}?", "What would you do if you got {0}?", "If you got {0}, then what would you do?"]], [r'(.*) mother(.*)', ["Tell me more about your mother.", "What was your relationship with your mother like?", "How do you feel about your mother?", "How does this relate to your feelings today?", "Good family relations are important."]], [r'(.*) father(.*)', ["Tell me more about your father.", "How did your father make you feel?", "How do you feel about your father?", "Does your relationship with your father relate to your feelings today?", "Do you have trouble showing affection with your family?"]], [r'(.*) child(.*)', ["Did you have close friends as a child?", "What is your favorite childhood memory?", "Do you remember any dreams or nightmares from childhood?", "Did the other children sometimes tease you?", "How do you think your childhood experiences relate to your feelings today?"]], [r'(.*)\?', ["Why do you ask that?", "Please consider whether you can answer your own question.", "Perhaps the answer lies within yourself?", "Why don't you tell me?"]], [r'quit', ["Thank you for talking with me.", "Good-bye.", "Thank you, that will be $150. Have a good day!"]], [r'(.*)', ["Please tell me more.", "Let's change focus a bit... Tell me about your family.", "Can you elaborate on that?", "Why do you say that {0}?", "I see.", "Very interesting.", "{0}.", "I see. And what does that tell you?", "How does that make you feel?", "How do you feel when you say that?"]] ] def reflect(fragment): tokens = fragment.lower().split() for i, token in enumerate(tokens): if token in reflections: tokens[i] = reflections[token] return ' '.join(tokens) def analyze(statement): for pattern, responses in psychobabble: match = re.match(pattern, statement.rstrip(".!")) if match: response = random.choice(responses) return response.format(*[reflect(g) for g in match.groups()]) def main(): print "Hello. How are you feeling today?" while True: statement = raw_input("> ") print analyze(statement) if statement == "quit": break if __name__ == "__main__": main()
Run it with python eliza.py and see if you can trip it up. Try not to spill your guts to your new computer therapist!
You will notice that most of the source