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 |
How does pop function works in set data types?
How can we make forms in python?
What is os module will do in python?
What is wrong with the code?
What is the language from which Python has got its features or derived its features?
What is lambda function ?
What is the difference between python and shell scripting?
What is pip?
What is a from import statement and write the syntax for it?
How does global value mutation used for thread-safety?
Give an example to capital first letter of a string?
What are the tools that help to find bugs or perform static analysis?