Home > Article > Backend Development > What symbols are used for single-line comments in Python?
Comments are explanations and descriptions of a piece of code, which can improve the readability of program code and allow people to understand the code more easily. Especially in large-scale project development and team projects, comments are essential!
Any programming language is indispensable for comments, and Python is no exception. The following is the specific usage of single-line comments in Python:
Related recommendations: "Python Video Tutorial 》
Single-line comments in the Python programming language often start with #. Single-line comments can be placed as a separate line above the line of code being commented, or after a statement or expression.
Example:
# -- coding: UTF-8 --
print (“hello world!”); #Hello, world
The above is the detailed content of What symbols are used for single-line comments in Python?. For more information, please follow other related articles on the PHP Chinese website!