I’ve just started the course “Build Chatbots with Python” and I am currently on module one first project where I can build a basic echo chatbot. However after trying few different attempts, the chatbot does not repeat the user input - it just stops on “You said”.
I’m entering the following code: -
greeting = (“Hi there User 1”) print(greeting) print(“I will repeat after you”) stuff_to_echo = input(“I love furry puppets”) print("You said: " + stuff_to_echo)
after this I enter python3 script.py as per instructions but this is the following output I receive: -
Hi there User 1 I will repeat after you I love furry puppets You said:
It doesn’t look like an issue with your code as after a quick test it works just fine for me:
Would you mind sharing a link to the exercise/environment you were running the code in?
Fabulous, thank you so much for taking your time to test this out!
I’m glad that there’s nothing wrong with my code (I was racking my brain for the past 2 days thinking I missed something!)
Much appreciated
I can finally move on!