python程序設計:基礎1習題

1.輸入平面上兩個點,計算兩點的距離spa import math x1,y1=input('please the start point x1,y1:') x2,y2=input('please the start point x2,y2:') distance=math.sqrt((x1-x2)**2+(y1-y2)**2) print'distance=',distance input pl
相關文章
相關標籤/搜索