上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页
摘要: public static void maopao() { int temp; int[] values = {2, 34, 0, 245}; for (int i = 0; i < values.length; i++) { // 每次操作都会给最大的找出来 for (int j = 0; j < 阅读全文
posted @ 2018-11-13 15:24 雷神约 阅读(117) 评论(0) 推荐(0) 编辑
摘要: java.util.Date类 java.util提供了Date类来封装日期和时间。实例化Date类的两个构造函数, Date();--当前时间 Date(long millisec);--距离格林威治时间1970年1月1日millisec毫秒的时间 使用SimpleDateFormat格式化日期 阅读全文
posted @ 2018-11-10 17:15 雷神约 阅读(2645) 评论(0) 推荐(0) 编辑
摘要: public class TestSuper { public static void main(String[] args) { new ChildClass("alex", 10, 198).f(); } } class Parent { Parent() { System.out.println("father"); } ... 阅读全文
posted @ 2018-11-10 15:27 雷神约 阅读(4345) 评论(0) 推荐(0) 编辑
摘要: https://www.crifan.com/python_re_sub_detailed_introduction/ 阅读全文
posted @ 2018-10-31 16:09 雷神约 阅读(544) 评论(0) 推荐(0) 编辑
摘要: str2 ="2018-10-29"c =re.sub(r"(\d{4})-(\d{2})-(\d{2})","\g<1>/\g<2>/\g<3>",str2)print(c) 阅读全文
posted @ 2018-10-31 16:02 雷神约 阅读(534) 评论(0) 推荐(0) 编辑
摘要: Django The web framework for perfectionists with deadlines. OVERVIEW DOWNLOAD DOCUMENTATION NEWS COMMUNITY CODE ABOUT ♥ DONATE The web framework for p 阅读全文
posted @ 2018-10-25 09:20 雷神约 阅读(400) 评论(0) 推荐(0) 编辑
摘要: import xlwtworkbook = xlwt.Workbook(encoding='utf8')ws = workbook.add_sheet('monitor_sheet')data = models.PcMonitor_Line.objects.all()ser = TableSeria 阅读全文
posted @ 2018-10-16 13:51 雷神约 阅读(295) 评论(0) 推荐(0) 编辑
摘要: Linux and Python jack.zhang 博客园 首页 新随笔 联系 订阅 管理 Nginx 之一:编译安装nginx 1.8.1 及配置 一:基介绍 官网地址www.nginx.org,nginx是由1994年毕业于俄罗斯国立莫斯科鲍曼科技大学的同学为俄罗斯rambler.ru公司开 阅读全文
posted @ 2018-10-10 12:18 雷神约 阅读(1240) 评论(0) 推荐(0) 编辑
摘要: 我是 环境管理 管理 Python 版本和环境的工具 pyenv – 简单的 Python 版本管理工具。 Vex – 可以在虚拟环境中执行命令。 virtualenv – 创建独立 Python 环境的工具。 virtualenvwrapper– virtualenv 的一组扩展。 包管理 管理包 阅读全文
posted @ 2018-10-09 13:53 雷神约 阅读(274) 评论(0) 推荐(0) 编辑
摘要: 素数的写法 阅读全文
posted @ 2018-09-25 22:55 雷神约 阅读(122) 评论(0) 推荐(0) 编辑
上一页 1 ··· 21 22 23 24 25 26 27 28 29 ··· 36 下一页