Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
The Very First Steps | First Acquaintance
Introduction to Python
course content

Course Content

Introduction to Python

Introduction to Python

1. First Acquaintance
2. Variables and Types
3. Conditional Statements
4. Other Data Types
5. Loops
6. Functions

bookThe Very First Steps

Welcome, learner!

Welcome to this Python module! We're excited to have you on this coding journey. Don't worry if you're new to Python or coding. Let's begin by understanding what Python is.

Python is a high-level, interpreted language. High-level languages have abstract syntax that machines can't understand directly.

Let's dive in and print our first message using Python. We'll use the print() function for this. When you want to print specific text, just wrap it in quotation marks, like "..." or '...'. If you don't, Python will assume you're referring to a variable (but we'll get to that later).

To print a sentence, use the following code:

1
print("Some message")
copy

Doing so will produce this output in the console:

Task

Your challenge? Print "Hello world!" in the console.

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 1
toggle bottom row

bookThe Very First Steps

Welcome, learner!

Welcome to this Python module! We're excited to have you on this coding journey. Don't worry if you're new to Python or coding. Let's begin by understanding what Python is.

Python is a high-level, interpreted language. High-level languages have abstract syntax that machines can't understand directly.

Let's dive in and print our first message using Python. We'll use the print() function for this. When you want to print specific text, just wrap it in quotation marks, like "..." or '...'. If you don't, Python will assume you're referring to a variable (but we'll get to that later).

To print a sentence, use the following code:

1
print("Some message")
copy

Doing so will produce this output in the console:

Task

Your challenge? Print "Hello world!" in the console.

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Section 1. Chapter 1
toggle bottom row

bookThe Very First Steps

Welcome, learner!

Welcome to this Python module! We're excited to have you on this coding journey. Don't worry if you're new to Python or coding. Let's begin by understanding what Python is.

Python is a high-level, interpreted language. High-level languages have abstract syntax that machines can't understand directly.

Let's dive in and print our first message using Python. We'll use the print() function for this. When you want to print specific text, just wrap it in quotation marks, like "..." or '...'. If you don't, Python will assume you're referring to a variable (but we'll get to that later).

To print a sentence, use the following code:

1
print("Some message")
copy

Doing so will produce this output in the console:

Task

Your challenge? Print "Hello world!" in the console.

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Everything was clear?

How can we improve it?

Thanks for your feedback!

Welcome, learner!

Welcome to this Python module! We're excited to have you on this coding journey. Don't worry if you're new to Python or coding. Let's begin by understanding what Python is.

Python is a high-level, interpreted language. High-level languages have abstract syntax that machines can't understand directly.

Let's dive in and print our first message using Python. We'll use the print() function for this. When you want to print specific text, just wrap it in quotation marks, like "..." or '...'. If you don't, Python will assume you're referring to a variable (but we'll get to that later).

To print a sentence, use the following code:

1
print("Some message")
copy

Doing so will produce this output in the console:

Task

Your challenge? Print "Hello world!" in the console.

Once you've completed this task, click the button below the code to check your solution.

Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
Section 1. Chapter 1
Switch to desktopSwitch to desktop for real-world practiceContinue from where you are using one of the options below
some-alt