上一页 1 2 3 4 5 6 7 ··· 18 下一页
摘要: from tkinter import * import urllib.request from PIL import Image, ImageTk import os,io,threading,time from tkinter import messagebox win=Tk() win.title('疯陈编程-看盘') win.geometry('1270x800+200+100') #wi 阅读全文
posted @ 2019-12-04 12:23 疯陈演义 阅读(545) 评论(0) 推荐(0) 编辑
摘要: import tushare as ts import pandas as pd df = ts.day_cinema() #取上一日全国影院票房排行数据 #df = ts.day_cinema('2015-12-24') #取指定日期的数据 pd.set_option('display.unicode.ambiguous_as_wide', True)#设置列名对齐 pd.set_option( 阅读全文
posted @ 2019-10-31 13:05 疯陈演义 阅读(1814) 评论(0) 推荐(0) 编辑
摘要: Windows环境下python的安装与使用 一、python如何运行程序 首先说一下python解释器,它是一种让其他程序运行起来的程序。当你编写了一段python程序,python解释器将读取程序,并按照其中的命令执行,得出结果,实际上,解释器是代码与机器的计算机硬件之间的软件逻辑层。 通俗来说 阅读全文
posted @ 2018-01-04 18:47 疯陈演义 阅读(98795) 评论(0) 推荐(0) 编辑
摘要: Python在量化领域的现状 就跟Java在web领域无可撼动的地位一样,Python也已经在金融量化投资领域占据了重要位置,从各个业务链条都能找到相应的框架实现。 在量化投资(证券和比特币)开源项目里,全球star数排名前10位里面,有7个是Python实现的。从数据获取到策略回测再到交易,覆盖了 阅读全文
posted @ 2018-01-04 11:52 疯陈演义 阅读(8815) 评论(0) 推荐(0) 编辑
摘要: 一、量化投资—为什么选择Python? 二、Windows环境下python的安装与使用 阅读全文
posted @ 2018-01-04 11:51 疯陈演义 阅读(1251) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include #define len 15 int chessmessage[len][len]; int worb = 2; int count = 0; int m; void star_print(); //打印游戏开始函数 void movegb(char key); //光标的移动 ... 阅读全文
posted @ 2017-11-09 12:31 疯陈演义 阅读(715) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include struct rcd;//声明节点结构 typedef struct rcd* Record;//节点指针别名 typedef struct rcd record;//节点别名 #define MAXIMUS 15 //定义棋盘大小 int p[MAXIMUS][MAXIMUS];//存储对局... 阅读全文
posted @ 2017-11-09 12:21 疯陈演义 阅读(4445) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2017-10-11 14:55 疯陈演义 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 精美版 阅读全文
posted @ 2017-09-14 11:47 疯陈演义 阅读(1070) 评论(0) 推荐(0) 编辑
摘要: #include #include #include #include #include #include const int H = 8; //地图的高 const int L = 16; //地图的长 char GameMap[8][16]; //游戏地图 int key; //按键保存 int sum = 1, over = 0; //蛇的长度, 游戏结束(自... 阅读全文
posted @ 2017-09-14 09:24 疯陈演义 阅读(374) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 18 下一页