我一直在做乙個線性方程計算器,我想知道如何讓python使用負數。例如int()、float()等。。。
這是我的密碼。import time
print("hello and welcome to the linear equation calculator.")
time.sleep(2)
print("enter the first co-ordinate like this - (xx, yy): ")
coordnte1 = input()
print("now enter the second co-ordinate like this, with the brackets, - (xx,yy): ")
coordnte2 = input()
print("now the y-intercept: ")
yintrcpt = input()
ydif = coordnte2[1] - coordnte1[1]
xdif = coordnte2[0] - coodrnte1[0]
g = ydif / xdif
print("y = " + g + "x + " + yintrcpt)
問題是:traceback (most recent call last):
file "c:/users/dale/documents/github/new_python_rpi_experiments/linear.py", line 17, in
ydif = coordnte2[1] - coordnte1[1]
typeerror: unsupported operand type(s) for -: 'str' and 'str'
我對python很陌生,所以如果有任何幫助,我將不勝感激。
python 如何呼叫py檔案
方法1 from file in import myfunc 方法2 import file in file in.myfunc arg 函式呼叫 demo.py folder a init py file1.py現需要在demo.py中呼叫file1.py檔案,方法如下 方法1 foldera資料...
python的 py檔案如何生成
1.用輔助軟體生成 在安裝完python3.5或者python2.7之後,還得安裝輔助工具。輔助輔助工具可以選擇vs visual studio pycharm ipython wing pyscripter spyder等。pyscripter與vs2015社群版是免費的 spyder有類似於ma...
Python 如何提公升py檔案版本
假如你建立了乙個目錄,新建了乙個py檔案,之後你想要備份這個檔案,如果直接拷貝檔案就會出現副本等,不想這樣還要手動修改,因此寫了乙個指令碼。coding utf 8 import os import re root os.path.dirname file num 0 for f in os.lis...