Respuesta :

Comments are readable explanations added to a program source code, to make the program easier to read, understand and also debug.

Python comments

In Python programming language, there are two types of comments

  • The single line comment
  • The multiline comment

The single line comment begins with #, while texts within open and close """ are regarded as multiline comments

Complete program

The complete program, when comments are added is as follows:

"""The next three lines get the name of the user"""

first_name = input("Enter your first name: ")

middle_name = input("Enter your middle name: ")

last_name = input("Enter your last name: ")

#This line calculates the user's full name

full_name = first_name + " " + middle_name + " " + last_name

#This line prints the full name

print(full_name)

Read more about comments at:

https://brainly.com/question/20475581

Otras preguntas