摘要: import requests # txt文件,存储股票代码,一行一个代码,小写字母 f = open(r"G:\pycharm_code\stock.txt") symbols = [line.strip() for line in f.readlines()] f.close() def get 阅读全文
posted @ 2020-04-21 21:30 程式交易 阅读(254) 评论(0) 推荐(0) 编辑