Build Your Own Chatbot

Introduction

Build a
chatbot
from scratch.

No experience needed. By the end you will have a Python chatbot running in a real web browser — built by you, line by line.

Python
Flask
HTML & CSS
6 Lessons
Nova · chatbot
N
Hi there! I'm Nova. What would you like to talk about?
You
Tell me a joke!
N
Why do programmers prefer dark mode? Because light attracts bugs. 🐛
You
Haha! What's your name?
N
Type a message…
def get_response(message):
    if "joke" in message.lower():
        return "Why do programmers prefer dark mode?"
    return "I didn't understand that."
# This is all you need to get started.