python小课堂:05 Python的整数与浮点数

3-3 Python的整数与浮点数
更新于: 2022-03-26 13:26:34

大纲

  • 四则运算
  • 取模运算
  • 地板除
  • 小数点位数

题目

一个长方形的长为3.14cm,宽为1.57cm,请计算这个长方形的面积,保留小数点后两位。

四则运算

  • 常用的:初高中数学里的
    • 加: +
    • 减: -
    • 乘: *
    • 除: /
  • 不常用:取模、地板除
    • 取模: 10 % 3; 取余数
    • 地板除:结果会忽略纯小数的部分,得到整数的部分
# 加法(与数学一致,优先级用括号)
num1 = 10
num2 = 0.5
num3 = 2

res = num1 + (num2 - num3)

print(res)

round 方法

  • 保留几位小数(round)
  • 取整(地板除,或者其它方法)
  • 四舍五入(未知)
# 浮点数,位数
round(3.3333, 2)
# 3.33

练习

  • 运行程序的路径问题(both)
    • 绝对路径: python3 /Users/username/test/hello.py
    • 相对路么: python3 ./test/hello.py
    • 查看路径: pwd
    • 用 vscode Copy path/Copy Relative path
  • 定义变量名(zm)
  • 函数调用、乱用括号(tj)
  • 系统 terminal / python terminal(zm)
## 知识点
# 1. 如何定义函数 
# 2. 定义变量
# 3. 四则运算
# 4. 如何调用一个函数

def square(length,width):
    s1=length*width
    s2=round(s1,2)
    return s2

print(square(3.14,1.57))
width = 1.57
length = 3.14
res1 = width*length
res2 = round(res1,2)
print(res2)

参考