What does # mean in python?

藏色散人
Release: 2019-06-24 10:28:28
Original
32875 people have browsed it

What does # mean in python?

What does # mean in python?

# in python is Python's single-line comment symbol (#)

The pound sign (#) is often used as a single-line comment symbol. When using # in the code, the right side of it Any data will be ignored and treated as comments.

For example: The content to the right of

# 这是一个注释
print("Hello, World!")
Copy after login

# will not be output during execution.

Related recommendations: "Python Tutorial"

The above is the detailed content of What does # mean in python?. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!