python读取文本中的坐标方法
利用python读取文本文件很方便,用到了string模块,下面用一个小例子演示读取文本中的坐标信息。
import string
x , y , z = [] , [] ,[]
with open("test.txt") as A:
for eachline in A:
tmp = eachline.split()
x.append(string.atof(tmp[0]))
y.append(string.atof(tmp[1]))
z.append(string.atof(tmp[2]))
print x,y,z
其中文本中的内容如下:
0.1 0.2 1
0.3 0.4 2
0.4 0.5 3
0.6 0.7 4
由于采取的是按行读取,利用split()分割,然后将读取的字符串转换为数字即可。
以上这篇python读取文本中的坐标方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我们。
时间: 2018-10-12
工作中偶尔需要做客流分析,用pyplot 库绘图.一般情况下, x 轴刻度默认显示为数字. 例如: 我希望x 轴刻度显示为星期日期. 查询pyplot 文档, 发现了 xtick() 函数可以修改刻度. 代码如下: import matplotlib.pyplot as plt import numpy as np #val_ls = [np.random.randint(100) + i*20 for i in range(7)] scale_ls = range(7) index_ls =
1.0 获取浏览器窗口坐标 python目录可找到Webdriver.py 文件定义了get_windo