如何用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)字符串是不能做運算的,但是整型是可以的;
5、width = float(input("Please input the width: "))length = float(input("Please input the width: "))size = width * lengthprint(size)如果有小數點的話那么就要用浮點型了;
6、class Retangle(): def __init__(self, width, length): self.width = width self.length = length 我們定義一下新的類;
7、def size(self): return self.width * self.lengthshape = Retangle(5, 6)print(shape)可以看到這樣得不到我們要的結果;
8、原因就是我們后面定義的size不能在后面定義,要在定義類的時候一起定義;
9、只要分開都會出現問題;
10、class Retangle(): def __init__(self, width, length): self.width = width self.length = length def size(self): return self.width * self.length在同一個方格制作就可以得到結果了。