point_x = [A_x, B_x, C_x, D_x]
point_y = [A_y, B_y, C_y, D_y]
points_tulpe = list(zip(point_x, point_y))
print(points_tulpe)
 
 
>>>[(A_x,A_y),(B_x,B_y),(C_x,C_y),(D_x,D_y)]

 

相关文章:

  • 2021-06-21
  • 2022-01-18
  • 2021-10-29
  • 2021-05-26
  • 2022-12-23
  • 2021-09-26
  • 2021-11-01
  • 2021-05-31
猜你喜欢
  • 2022-01-04
  • 2022-12-23
  • 2022-02-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
相关资源
相似解决方案