Python中坐标函数是哪个 python中的坐标

主机教程 建站分享 2年前 (2022-09-18) 202次浏览

文章摘要:Python中坐标函数是哪个 python中的坐标

Python中一般使用coordinate函数定义坐标,使用方法如下: def coordinate(x, y […]

Python中一般使用coordinate函数定义坐标,使用方法如下:

def coordinate(x, y):

return {

(True, True ) : 1,

(True, False) : 2,

(False, True ) : 3,

(False, False) : 4

}[(x > 0, y > 0)]

if __name__ == "__main__":

print 'Please insert X,Y'

x = input('Please insert X')

y = input('Please insert Y')

print coordinate(float(x), float(y))


声明:
若非注明,本站文章源于互联网收集整理和网友分享发布,如有侵权,请联系站长处理。
文章名称:Python中坐标函数是哪个 python中的坐标
文章链接:http://www.7966.org/post/14142.html
转载请注明出处

喜欢 (0)