csv
文件读取
使用csv
标准库模块对csv
文件进行读写
如下,读取名为filename
的csv
文件。
其中第一行为表头的列名,从第二行开始为数据内容(假设有两列)。
import csv
with open(filename, 'r') as file:
csv_content = csv.reader(file)
csv_header = next(csv_content) # 表头信息
for col1, col2 in csv_content:
print(col1)
print(col2)
字符串转日期格式
对于形如'yyyy-mm-dd'
格式的字符串,首先用time.strptime
将其转成time.struct_time
类,
再将前三个元素(年、月、日)转成datetime
格式。
import time
import datetime
date_str = '2000-1-1'
t_time = time.strptime(date_str, '%Y-%m-%d')
t_datetime = datetime.datetime(*t_time[0:3]))
获取微秒数
datetime
标准库模块
import datetime
cur_microsec = datetime.datetime.now().microsecond
运行计时
仿照Matlab中的tic
和toc
定义类似的函数:
import time
def tic():
globals()['tt'] = time.time()
def toc():
print('Elapsed time: %.6f seconds
' % (time.time()-globals()['tt']))