用python计算矩形面积简单
1个回答
关注
展开全部
亲亲,用python计算矩形面积简单的方法如下哦1.亲亲首先呢我们需要打开JUPTER NOTEBOOK,新建一个PY文档哦!2.亲亲接着呢就是width = 5length = 6size = width * lengthprint(size)定义三个变量,然后直接打印最后一个变量,这是一种方法哦!3.亲亲还有呢就是width = input("Please input the width: ")length = input("Please input the width: ")size = width * lengthprint(size)也可以用INPUT,但是要注意这样会出现问题的哦!4.亲亲还有呢就是width = int(input("Please input the width: "))length = int(input("Please input the width: "))size = width * lengthprint(size)字符串是不能做运算的,但是整型是可以的哦!
咨询记录 · 回答于2022-09-16
用python计算矩形面积简单
亲亲,用python计算矩形面积简单的方法如下哦1.亲亲首先呢我们需要打开JUPTER NOTEBOOK,新建一个PY文档哦!2.亲亲接着呢就是width = 5length = 6size = width * lengthprint(size)定义三个变量,然后直接打印最后一个变量,这是一种方法哦!3.亲亲还有呢就是width = input("Please input the width: ")length = input("Please input the width: ")size = width * lengthprint(size)也可以用INPUT,但是要注意这样会出现问题的哦!4.亲亲还有呢就是width = int(input("Please input the width: "))length = int(input("Please input the width: "))size = width * lengthprint(size)字符串是不能做运算的,但是整型是可以的哦!
亲亲,总的来说呢,老师需要提醒您的是1.亲亲首先呢就是width = float(input("Please input the width: "))length = float(input("Please input the width: "))size = width * lengthprint(size)2.亲亲,如果有小数点的话那么就要用浮点型了哦!
亲亲,具体图示实现代码如下哦