Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Comments | First Acquaintance
course content

Course Content

Introduction to Python

Is This Course Feeling Too Easy?

Dive into real world practice with our application focused course

Congratulations! As your code grows in size, it can become challenging to understand each part, even if you're the author.

That's why it's essential to get in the habit of leaving comments in your code. Comments help clarify the purpose or function of a specific code segment.

To designate a line as a comment, start it with the # symbol.

For instance,

But remember, if you put a # before the print() statement, that line won't run.

Now, onto our question:

How many lines will be displayed when you run the code below?

Select the correct answer

Everything was clear?

Section 1. Chapter 2
course content

Course Content

Introduction to Python

Is This Course Feeling Too Easy?

Dive into real world practice with our application focused course

Congratulations! As your code grows in size, it can become challenging to understand each part, even if you're the author.

That's why it's essential to get in the habit of leaving comments in your code. Comments help clarify the purpose or function of a specific code segment.

To designate a line as a comment, start it with the # symbol.

For instance,

But remember, if you put a # before the print() statement, that line won't run.

Now, onto our question:

How many lines will be displayed when you run the code below?

Select the correct answer

Everything was clear?

Section 1. Chapter 2
some-alt