• 大小:
    文件类型: .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

评论

共有 条评论