In Python, how do you remark numerous lines?

Answers were Sorted based on User's Feedback



In Python, how do you remark numerous lines?..

Answer / nashiinformaticssolutions

Multi-line comments are those that contain more than one line. All lines that will be commented must begin with a #. To mark many lines, you can also utilize a handy shortcut. All you need to do is input a # once while holding down the Ctrl key and left-clicking wherever you want a # character to appear. Every line where you place your cursor will have a comment added to it.

Is This Answer Correct ?    0 Yes 0 No

In Python, how do you remark numerous lines?..

Answer / glibwaresoftsolutions

Multi-line comments are those that contain more than one line. All lines that will be commented must begin with a #. To mark many lines, you can also utilize a handy shortcut. All you need to do is input a # once while holding down the Ctrl key and left-clicking wherever you want a # character to appear. Every line where you place your cursor will have a comment added to it.

Is This Answer Correct ?    0 Yes 0 No

In Python, how do you remark numerous lines?..

Answer / hr@tgksolutions.com

Multi-line comments are those that contain more than one line. All lines that will be commented must begin with a #. To mark many lines, you can also utilize a handy shortcut. All you need to do is input a # once while holding down the Ctrl key and left-clicking wherever you want a # character to appear. Every line where you place your cursor will have a comment added to it.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

What is “call by reference” in python?

1 Answers  


How do you find the current version of python?

1 Answers  


Explain about indexing and slicing operation in sequences?

1 Answers  


Which ide should I use for python?

1 Answers  


What are the tools that help to find bugs or perform the static analysis?

1 Answers  


In python, how do I check if a list is empty?

1 Answers  


What is the difference between methods & constructors?

1 Answers  


What is the difference between list and tuples in python?

1 Answers  


What is meant by instantiating a class?

1 Answers  


Explain the use of ternary operator in python?

1 Answers  


The following is displayed by a print function call?

1 Answers  


How can you handle multiple exception in python?

1 Answers  


Categories