-
大小:文件类型: .zip金币: 1下载: 0 次发布日期: 2021-05-17
- 语言: Python
- 标签: python csv matplotlib
资源简介
python数据处理(csv->图表)
代码片段和文件信息
# -*- coding: utf-8 -*-
“““
Created on Mon May 29 10:00:16 2017
@author: Administrator
“““
import csv
filename = ‘300001_D.csv‘
with open(filename) as f:
reader = csv.reader(f)
header_row = next(reader)
print(header_row)
with open(filename) as f:
reader = csv.reader(f)
header_row = next(reader)
for index column_header in enumerate(header_row):
print(index column_header)
with open(filename) as f:
reader = csv.reader(f)
header_row = next(reader)
highs = []
for row in reader:
high=row[2]
highs.append(high)
print(highs)
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 674 2017-05-29 11:30 highs_lows.py
文件 899 2017-05-29 11:30 highs_lows02.py
文件 1288 2017-05-29 11:29 highs_lows03.py
文件 9966 2017-05-21 18:22 300001_D.csv
相关资源
- Python程序设计与算法基础教程源代码
- 微博评论Python代码实现
- Python最小距离法
- 五子棋AI python实现
- requests 中文文档
- 手机Python图形界面教程
- Birch python实现
- 用Python脚本对栅格图层进行批量resa
- Python学习路线Python课程大纲Python视频
- 自适应共振理论ART2(Adaptive Resonance
- 基于opencv绘制图片的三维空间显示图
- 抓取CSDN博客文章的简单爬虫python源码
- 囚徒困境的演化博弈实现Python
- 数据处理程序
- 利用python实现基于SVM的文本分类
- python新浪微博爬虫,爬取微博和用户
- DoS攻击Python源码
- 使用训练好的模型进行预测
- python 打砖块源代码
- Python-每天定时发消息
- 实现火车票查询python.zip
- python SVM算法
- 基于python的人脸检测
-
li
nk Prediction相似性计算方法.rar - 利用Python创建ArcGis批量输出地图影工
- 利用Python创建ArcGis批量裁剪栅格工具
- 利用Python创建ArcGis裁剪工具
- PSO算法Python实现自定义函数
- Python的Nmap模块
- 教务管理系统
评论
共有 条评论