网站首页 美食营养 游戏数码 手工爱好 生活家居 健康养生 运动户外 职场理财 情感交际 母婴教育 时尚美容

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