What does the ‘#’ symbol do in Python?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
‘#’ is used to comment on everything that comes after on the line
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / nashiinformaticssolutions
The `#` symbol is used to add comments in Python. Comments are not executed and are intended to explain the code for the benefit of developers.
Example:
python
# This is a comment
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
The `#` symbol is used to add comments in Python. Comments are not executed and are intended to explain the code for the benefit of developers.
Example:
python
# This is a comment
| Is This Answer Correct ? | 0 Yes | 0 No |
In python, how can you generate random numbers?
Mention the use of // operator in Python?
What is the syntax for dictionary comprehension in python?
How can you convert a number to string?
What does split () do in python?
How to retrieve data from a table in mysql database through python code?
How do you remove duplicates from a list whilst preserving order?
Mention the use of the split function in Python?
What is list when we have to use ?
What is flask (__ name __)?
Explain the five benefits of using python?
What data types does python support?