In Python, how do you remark numerous lines?
Answers were Sorted based on User's Feedback
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 |
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 |
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 |
How do you reverse a string in python?
What is the keyword to import a module in python?
What is a function call or a callable object in python?
What is the module and package in python?
What is a pure function python?
What is egg and wheel in python?
What is namespace in Python?
How do I check if python is installed?
How lists is differentiated from tuples?
What does “list comprehension” mean? How does it work and how can I use it?
What are the basic data types supported by python?
What is slicing in python?