{site_name}

{site_name}

🌜 搜索

Python数字是Python编程语言中用于表示数值的数据类型

Python 𝄐 0
python数字从小到大排序,python数字类型包括,python 数字的ascii码,python数字反序输出,python数字和字母比大小,python数字计算优先级
Python数字是Python编程语言中用于表示数值的数据类型。Python支持三种不同的数字类型:整数、浮点数和复数。

1. 整数(int):整数是没有小数部分的数字。例如,2、-10和0都是整数。可以使用内置函数int()将字符串转换为整数。

例子:


x = 5
y = -10
z = 0

print(type(x)) # 输出 <class 'int'>
print(type(y)) # 输出 <class 'int'>
print(type(z)) # 输出 <class 'int'>

a = int("25")
b = int("-100")

print(a) # 输出 25
print(b) # 输出 -100


2. 浮点数(float):浮点数是带有小数部分的数字。例如,1.23、3.14159和-999.0都是浮点数。可以使用内置函数float()将字符串转换为浮点数。

例子:


x = 1.23
y = 3.14159
z = -999.0

print(type(x)) # 输出 <class 'float'>
print(type(y)) # 输出 <class 'float'>
print(type(z)) # 输出 <class 'float'>

a = float("2.5")
b = float("-10.6")

print(a) # 输出 2.5
print(b) # 输出 -10.6


3. 复数(complex):复数包含实部和虚部,其中实部和虚部都是浮点数。可以使用后缀“j”或内置函数complex()来表示复数。

例子:


x = 3 + 4j
y = -2j
z = 1.5 - 0.5j

print(type(x)) # 输出 <class 'complex'>
print(type(y)) # 输出 <class 'complex'>
print(type(z)) # 输出 <class 'complex'>

a = 2 + 3j
b = complex("4-2j")

print(a) # 输出 (2+3j)
print(b) # 输出 (4-2j)