Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Impara Comments | First Acquaintance
Introduction to Python 2022

bookComments

Comments in programming are parts of code that Python ignores. The primary purpose of using them is readability. It is a good practice to leave comments in your code with descriptions of what a particular part of code does.

In Python, the comment starts with the hash # sign. All the text right to the # will be ignored. For example, you may have two print() functions, but if you place # to the left of one of them, then only one string will be output.

12
print('String 1') #print('String 2')
copy
question mark

How many lines will be printed after the code execution?

Select the correct answer

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 1. Capitolo 4

Chieda ad AI

expand

Chieda ad AI

ChatGPT

Chieda pure quello che desidera o provi una delle domande suggerite per iniziare la nostra conversazione

Awesome!

Completion rate improved to 20

bookComments

Scorri per mostrare il menu

Comments in programming are parts of code that Python ignores. The primary purpose of using them is readability. It is a good practice to leave comments in your code with descriptions of what a particular part of code does.

In Python, the comment starts with the hash # sign. All the text right to the # will be ignored. For example, you may have two print() functions, but if you place # to the left of one of them, then only one string will be output.

12
print('String 1') #print('String 2')
copy
question mark

How many lines will be printed after the code execution?

Select the correct answer

Tutto è chiaro?

Come possiamo migliorarlo?

Grazie per i tuoi commenti!

Sezione 1. Capitolo 4
some-alt