从模块python 3导入函数

时间:2013-03-05 04:34:52

标签: python function module

我创建了函数

 def distance(x0, y0, x1, y1):
       import math
       return math.sqrt((x1 - x0)**2 + (y1 - y0)**2)

并将其保存为distance.py 然后我尝试运行代码

from distance import distance
x0=input("Please input x0")
y0=input("Please input y0")
x1=input("Please input x1")
y1=input("Please input y1")
print ("")
print (distance())

使用x0 =10, y0=20, x1=50 y1=50答案应为50.0,但我得到“函数距离为0x058625D0”

请帮助

1 个答案:

答案 0 :(得分:2)

将您的代码切换为:

from distance import distance
x0=float(input("Please input x0: "))
y0=float(input("Please input y0: "))
x1=float(input("Please input x1: "))
y1=float(input("Please input y1: "))
print ("")
print (distance(x0, y0, x1, y1))

您需要先将输入值转换为浮点数,以便它们在您的函数中起作用,然后您需要将它们实际传递给您的函数。