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

Conteúdo do Curso

Introduction to Python

Este curso está parecendo fácil demais?

Mergulhe na prática do mundo real com nosso curso focado em aplicação

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?

Selecione a resposta correta

Tudo estava claro?

Seção 1. Capítulo 2
course content

Conteúdo do Curso

Introduction to Python

Este curso está parecendo fácil demais?

Mergulhe na prática do mundo real com nosso curso focado em aplicação

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?

Selecione a resposta correta

Tudo estava claro?

Seção 1. Capítulo 2
some-alt