上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 33 下一页
摘要: http://www.jianshu.com/p/0e4daecc8122?from=timeline&isappinstalled=0 学习地址:http://leafwf.blog.51cto.com/872759/1618409 阅读全文
posted @ 2017-09-05 17:18 dieyaxianju 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2017-08-31 13:08 dieyaxianju 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 参考:http://blog.csdn.net/fx677588/article/details/58164902 我自己使用:http://idea.imsxm.com/ 有永久跟到2020年3月的https://blog.csdn.net/u014044812/article/details/8 阅读全文
posted @ 2017-08-23 19:41 dieyaxianju 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 删除表中内容分为三种情况。 1、删除表中所有数据,但保留表结构(可用以下两个语句): truncate table 表名; delete from 表名; 2、删除表中部分数据: delete from 表名 where 条件; 3、删除表结构及数据: drop table 表名; 区别: trun 阅读全文
posted @ 2017-07-26 12:02 dieyaxianju 阅读(224) 评论(0) 推荐(0) 编辑
摘要: url="http://test.plus.1course.cn/Task/Display?id=25942" print(url) result=url.split('/')[-2] print(result) 阅读全文
posted @ 2017-07-13 10:32 dieyaxianju 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 参考:http://blog.csdn.net/data8866/article/details/68944565 1.注释ctrl+/ 2.快速导入包ctrl+alt+空格 阅读全文
posted @ 2017-07-09 16:59 dieyaxianju 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 安装好python3.5,在D:\study\python\python35\Scripts目录下打开命令行 执行命令pip3 list 查看已经安装的东西,提示需要升级,执行命令python -m pip install --upgrade pip 升级成功 阅读全文
posted @ 2017-06-25 15:55 dieyaxianju 阅读(401) 评论(0) 推荐(0) 编辑
摘要: 本机windows,文件目录F:\python\ClStudyDemo\osTest.py os.path.realpath(_file_)——返回真实路径 os.path.split()——返回路径的目录和文件名 os.getcwd()——得到当前工作的目录 __file__ 是用来获得模块所在的 阅读全文
posted @ 2017-05-24 12:07 dieyaxianju 阅读(30133) 评论(0) 推荐(0) 编辑
摘要: http://www.runoob.com/python3/python3-smtp.html 阅读全文
posted @ 2017-05-23 18:31 dieyaxianju 阅读(110) 评论(0) 推荐(0) 编辑
摘要: 本机:python3.5 1.需要安装configerparser 【py2是 ConfigParser】 2.编写代码 运行前 运行后 1) 基本的读取配置文件 -read(filename) 直接读取ini文件内容 -sections() 得到所有的section,并以列表的形式返回 -opti 阅读全文
posted @ 2017-05-22 20:41 dieyaxianju 阅读(682) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 33 下一页