用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在同一個方格製作就可以得到結果了。
用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在同一個方格製作就可以得到結果了。