

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 2
click for more info
Not enough gems
Cost: 6 gems
1: The Zen of Python
incomplete
2: Why Python?
incomplete
3: Python 2 vs. Python 3
incomplete
4: Should You Use Python 2 or 3?
incomplete
This lesson's interactive features are locked, please to keep using them
One thing that's important to keep in mind as you continue your Python journey is that the Python ecosystem is fragmented. Python 3 was released on December 3, 2008, but 15+ years later, the web is still full of Python 2 dependencies, scripts and tutorials!
In this course, we used Python 3 – just like any good citizen should these days.
One of the most obvious breaking changes between Python 2 and 3 is the syntax for printing text to the console.
print "hello world"
print("hello world")
Update the code from Python 2 to Python 3 syntax.