🎬
Select a lesson from the sidebar
Video lessons will appear here.
Upload your recordings to YouTube (unlisted) and paste the video ID into the lesson data.
Introduction to the course
What you will build by the end of this course. See the complete journey from zero to production agents.
Lesson exercise
Exercise: Write a Python function that calculates the mean and standard deviation of a list — using only sum() and len(). No libraries.
def stats(numbers):
    # Step 1: calculate mean
    mean = ?

    # Step 2: calculate variance
    variance = ?

    # Step 3: std = square root of variance
    std = ?

    return mean, std

# Test:
print(stats([2, 4, 4, 4, 5, 5, 7, 9]))
# Expected: mean = 5.0, std = 2.0
Stuck? Go to the Ask DRONA tab and type: Help me with the exercise
Your notes
Saved in your browser. Private to you.
Ask DRONA about this lesson
DRONA knows the full curriculum. Ask anything — use commands like /examples, /quiz, /code.
A
Hello! I'm DRONA — your AI tutor for this course.

I can explain any concept from any lesson, give extra examples, help with exercises, or test your knowledge. Use commands like /quiz, /examples backpropagation, or just ask naturally.