摘要:
import json import requests import datetime import tushare as ts cal_dates = ts.trade_cal() today=datetime.date.today().strftime("%Y%m%d") #获取今日日期 url='http://xxxx:xx/api/market/ontradingpool' #... 阅读全文
摘要:
# -*- coding:utf-8 -*- import re import csv file = open('make_setup.cfg', 'w+') with open("tyb.csv", "r", encoding="GBK") as csvfile: # 读取csv文件,返回的是迭代类型 read = csv.reader(csvfile) aa = ... 阅读全文
摘要:
os.walk()和os.listdir()两种方法 一、os.walk() 模块os中的walk()函数可以遍历文件夹下所有的文件。 os.walk(top, topdown=Ture, onerror=None, followlinks=False) 该函数可以得到一个三元tupple(dirp 阅读全文