gpt4 book ai didi

python - 将参数作为坐标传递

转载 作者:太空宇宙 更新时间:2023-11-03 18:26:19 24 4
gpt4 key购买 nike

我有一个带有坐标的文本文件,如下例所示。我的目标是加载文件并将其创建到坐标中以插入海龟中以绘制某些内容,但是当我尝试时整个事情都会崩溃。

super, 4
-500, -360
-500, 360
500, 360
500,-360

sand, 29
-400, -90
-450, 60
-400, 110
-300, 110
-250, 210
-200, 260

到目前为止我有以下代码。我如何将其变成坐标 x 和 y 截距。

file = open("coordinate.txt", "r")
for line in file:
line_str = line.split(",")

最佳答案

你可以这样使用

line_str=[]
for line in file:
line_str.append(line.replace('\n','').split(","))

       line_str.append([line.rstrip("\n").split(",")])
print line_str

关于python - 将参数作为坐标传递,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23129811/

24 4 0
文章推荐: html - Foundation 5 顶部导航下拉列表中的任意内容?
文章推荐: c# - Orchard IRepository 与 Linq to SQL
文章推荐: html - 将五个
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com