The Language
Part of the Fundamentals section of Coddy's Python journey — lesson 1 of 77.
Python is one of the world's easiest and most popular programming languages.
Challenge
BeginnerWelcome to your first Python program! The code is already written for you.
What to do:
- Look at the code:
print("Hello Python!") - Press the "Run Code" button to execute it
- You should see "Hello Python!" appear in the output
Try it yourself
# Welcome! To print text in Python, use the print() function.
# Make sure to enclose your text in quotes and use parentheses.
# Example: print("Hello World")
# Run this code to see the result:
print("Hello Python!")All lessons in Fundamentals
4Operators Part 2
Logical Operators Part 1Logical Operators Part 2Recap - Simple LogicLogical Operators Part 3Logical Operators Part 48Loops
For LoopWhile LoopBreakContinueRecap - FactorialThe Range FunctionNested LoopRecap - Dynamic Input3Operators Part 1
Arithmetic OperatorsModulo OperatorArithmetic ShortcutsRecap - Simple MathComparison Operators9Functions
Declare a FunctionArgumentsReturnRecap - Sigma FunctionRecap - Validation FunctionDefault Values12Iterating Over Sequences
Iterating Over ElementsThe Enumerate FunctionIterating Over Strings Part 1Iterating Over Strings Part 2