How to express natural numbers in Python

爱喝马黛茶的安东尼
Release: 2019-06-26 15:57:39
Original
16680 people have browsed it

How to express natural numbers in Python

There are two mathematical constants in Python, one is e and the other is PI.

e: Mathematical constant, e is the natural constant (natural constant).

PI: Mathematical constant (pi, generally represented by π).

Related recommendations: "Python Video Tutorial"

The so-called constant is a variable that cannot be changed. For example, the commonly used mathematical constant π is a constant. In Python, constants are usually expressed in all uppercase variable names:

PI=3.14159265359

But in fact PI is still a variable, and Python has no mechanism to guarantee that PI will not be changed. Therefore, it is just a convention to use all uppercase variable names to represent constants. If you must change the value of the variable PI, no one can stop you.

The above is the detailed content of How to express natural numbers 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