Your First Look at Python Code
Learn how to install Python and set up an IDE or code editor for programming.
Your First Look at Python Code is a free Learn AI with Python lesson on CoddyKit — lesson 3 of 3. You can read the complete lesson below for free — then practise it hands-on in the browser with a built-in code editor and a 24/7 AI tutor. It is part of the Learn AI with Python learning path, one of 3 lessons in the course, and your progress syncs across the web and the CoddyKit app.
Let's read some code
Don't worry, you won't memorize anything. We'll just look at code together and get comfy.
Printing text
The word print tells Python to show something on the screen. It's that direct.
Try it 🎯
Run this. Python will print your message exactly as written between the quotes.
print("I am learning Python!")Quotes make text
Text inside quotes is called a string. The quotes tell Python: this is words, not math.
Python can do math
Python is also a calculator. Type a sum and it works it out for you.
print(2 + 3)Storing things 📦
A variable is a labeled box that holds a value, so you can use it again later.
A name and a value
Here we put a name in a box called name, then print it. Read it slowly, it makes sense!
name = "Sam"
print(name)You can read code!
See? You just understood real Python. It's logical, one small step at a time.
Mistakes are normal
Everyone makes typos. Errors aren't failure, they're just hints. Tweak and run again.
You're a coder now! 🎉
You read and ran real code. That's a huge first step. The fun is only just beginning.
Quick Check
Last check! Which line tells Python to show text on the screen?
Frequently asked questions
Is the “Your First Look at Python Code” lesson free?
Yes — the full text of “Your First Look at Python Code” is free to read here on the web, and the Learn AI with Python course includes 3 lessons in total. To practise it interactively (a built-in code editor and a 24/7 AI tutor) and unlock the rest of the Learn AI with Python course, upgrade to CoddyKit PRO.
What will I learn in “Your First Look at Python Code”?
Learn how to install Python and set up an IDE or code editor for programming. You practise Learn AI with Python with hands-on code you run directly in the browser, and a 24/7 AI tutor answers your questions as you work through the lesson.
Do I need any experience to start Learn AI with Python?
No prior experience is required. Learn AI with Python on CoddyKit is structured for beginners through advanced learners; this is — lesson 3 of 3, so you can start here or from the beginning and move at your own pace.
How long does the “Your First Look at Python Code” lesson take?
Most CoddyKit lessons take about 5–10 minutes. Each one is bite-sized and interactive, so you make steady progress and pick up exactly where you left off across the web and the app.
Can I write and run code in this Learn AI with Python lesson?
Yes. Every Learn AI with Python lesson includes a built-in code editor, so you write and run real code right in your browser and get instant AI feedback — no local setup required.
All lessons in this course
- What is Programming?
- Why Learn Python?
- Your First Look at Python Code