Python开发
python作为脚本语言,具有简洁的语法和完善的类库,适合各个年龄段的人学习,也适合几乎所有专业,所以应用非常广泛,作为一个程序员更得学习了-_-!
之乎者也哦
测绘和遥感专业硕士毕业,从事过遥感预处理算法、图像算法、机器人3D视觉、点云、TCP/IP通信、数据库、安卓、arcgis开发工作,擅长C 、Qt、python、Java、C#、JavaScript。
展开
-
Python安装第三方库模块(Windows下)
一、官网下载安装包并且已经安装好Python,提供两个下载地址,一个是官网,一个是网盘(3.6和3.7版本(64位))官网网址:https://www.python.org/downloads/windows/网盘下载:https://pan.baidu.com/s/1DmP4RfnoMlt7N8ROLocoBQ 密码: qwtf。选择executable installer(可执行安装版本)...原创 2018-07-23 09:56:04 · 16427 阅读 · 2 评论 -
Python配置和安装gdal库(Windows下)
一、首先下载Python,并已经安装好。具体可以参考博文https://blog.csdn.net/HB_Programmer/article/details/81162025二、方法:1:官网下载,下载地址:https://www.lfd.uci.edu/~gohlke/pythonlibs/#gdal 有时可能打不开该网页,可以换个时间打开。另外的情况是下载速度比较慢,...原创 2018-07-24 22:41:22 · 32422 阅读 · 27 评论 -
python写入txt
将contents写入file:def write_file(file, contents): buffer = open(file, mode='w') buffer.write(contents) buffer.close()原创 2020-09-04 11:01:53 · 687 阅读 · 0 评论 -
python按行读取
python按行读取存入列表:def load_file_line(file): buffer = open(file, mode='r') str = buffer.readline() list_file = [] while str != '': list_file.append(str) str = buffer.readline() buffer.close() print(list_file)...原创 2020-09-04 10:57:35 · 540 阅读 · 0 评论