Feb-02-2022, 09:38 PM
hi! i'm pretty new to python- i mean, i've taken classes, but i haven't taken college-level ones or anything. anyway, could you help me debug this bit of my chatbot? thanks!

(by the way, the forum seems to have removed my formatting but the indentation is all correct!)
elif c == "My computer.": print("Does she monitor it?") c2 = input() if c2 == "Yes.": print("So she must know about me.") elif c2 == "No.": print("Does she know about me?") c3 = input() if c3 == "Yes.": print("Of course. What does she think? About how you have a version of her in your computer?") if c3 == "No": print("Strange. How?")when i attempt to test it, my program will not allow me to reply past c2, but i need to have c3 there. what am i doing wrong? thanks!


(by the way, the forum seems to have removed my formatting but the indentation is all correct!)