python 中的数值运算

时间:2024-10-12 01:52:12

1、使用内置的type函数查看变量的类型。spam_amount = 0print(type(spam_amount))print(type(1.2))

python 中的数值运算

3、一个例子:hat_height_cm = 25my_height_cm = 190# How tall am I, in meters, when wearing my hat?total_height_meters = hat_height_cm + my_height_cm / 100print("Height in meters =", total_height_meters, "?")

python 中的数值运算

5、去绝对值函数absprint(abs(32))print(abs(-32))

python 中的数值运算
© 2025 长短途
信息来自网络 所有数据仅供参考
有疑问请联系站长 site.kefu@gmail.com