2017年8月16日
摘要: 元组可以简单认为是一个只读的列表 tuper = const list 阅读全文
posted @ 2017-08-16 23:34 神秘藏宝室 阅读(466) 评论(0) 推荐(0) 编辑
摘要: for中间不是break出来的,是正常循环完跳出循环的会执行else内的语句 while else语句也是如此 这个以前的常见语言没有,特此记录 阅读全文
posted @ 2017-08-16 23:24 神秘藏宝室 阅读(396) 评论(0) 推荐(0) 编辑
摘要: ``` def p_num(): global num num = 10 print (num) num = 5 p_num() print(num) ``` 阅读全文
posted @ 2017-08-16 23:08 神秘藏宝室 阅读(1261) 评论(0) 推荐(0) 编辑
摘要: ``` import requests res = requests.get("http://www.baidu.com") savefile = open("baidu.html","wb") savefile.write(res.content) savefile.close() ``` 阅读全文
posted @ 2017-08-16 22:41 神秘藏宝室 阅读(272) 评论(0) 推荐(0) 编辑
摘要: 通过pip安装 或者,下载代码后安装: 发现经常出现timeout,可以切换源 网上有很多可用的源,例如豆瓣:http://pypi.douban.com/simple/ 清华:https://pypi.tuna.tsinghua.edu.cn/simple 例如: 这样就会从清华这边的镜像去安装r 阅读全文
posted @ 2017-08-16 22:15 神秘藏宝室 阅读(844) 评论(0) 推荐(0) 编辑
摘要: server选项里边输入 http://elporfirio.com:1017/ 就可以了。 不行再尝试: server选项里边输入 http://idea.imsxm.com/ 阅读全文
posted @ 2017-08-16 21:40 神秘藏宝室 阅读(304) 评论(0) 推荐(0) 编辑

 >>>转载请注明出处<<<