1. 用pip安装包keras,报错误信息 TypeError: string argument expected, got 'NoneType': PS C:\Users\GoFree> pip install keras --upgrade # 包更新语句 Collecting keras Do ...
分类:
其他好文 时间:
2018-06-05 21:10:05
阅读次数:
4505
因为存在需要python2 和 python3 的项目,所以在win10 上一起安装python2 和 python3环境,其中Anaconda为包含python3的科学计算集成环境 1. 安装 python2 在官网下载python2 的安装包:https://www.python.org/dow ...
分类:
编程语言 时间:
2018-06-05 18:43:37
阅读次数:
421
什么是 PyMySQL? PyMySQL 是在 Python3.x 版本中用于连接 MySQL 服务器的一个库,Python2中则使用mysqldb。 PyMySQL 遵循 Python 数据库 API v2.0 规范,并包含了 pure-Python MySQL 客户端库。 PyMySQL的安装 ...
分类:
数据库 时间:
2018-06-05 18:43:07
阅读次数:
302
1、print函数: Python3:print为一个函数,必须用括号括起来 Python2:print为class 2、input()函数 input()用户输入函数 Python3:input得到的是str Python2:input得到的是int,raw_input得到的是str 3、整除 P ...
分类:
编程语言 时间:
2018-06-05 17:46:53
阅读次数:
180
原题链接:http://www.runoob.com/python/python-exercise-example18.html 题目:求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222+2222+22222(此时共有5个数相加),几个数相加由键盘控制。 分析 ...
分类:
编程语言 时间:
2018-06-05 15:42:18
阅读次数:
179
最近朋友在苦学英文,但是又不知道自己学的怎么样了,直到有一天,他找到了扇贝网,里面有个“评估你的单词量”功能非常的好,就推荐给我了! 今天我们就用python做一个小的爬虫,然后自己写一个脚本来实现这个功能吧! 目标:打造一个英文词汇量测试脚本 url:扇贝网 工具:python3.6、pychar ...
分类:
编程语言 时间:
2018-06-05 15:25:23
阅读次数:
223
链接: https://pan.baidu.com/s/19NYnlOvGzDcvG94EkoC8-g 密码: 733wzping的第一个exe版本由于未对兼容性进行测试,使用python3.6编写64位win10操作系统打包。造成仅64位win10可用的情况。 6月4日 由于python3.6对于 ...
分类:
其他好文 时间:
2018-06-05 13:20:46
阅读次数:
98
Nothing for nothing. 不费力气,就一无所得。 These days I am busy in compiling a lightweight communication libraries for Python3.6 on windows. It is not a easy jo ...
分类:
其他好文 时间:
2018-06-05 10:14:54
阅读次数:
144
1、django-admin startproject mysite 2、进到mysite目录 python manage runserver 使用 http://172.0.0.1:8000/ 登录 3、创建应用 python manage startapp blog 4、在models.py 写 ...
分类:
编程语言 时间:
2018-06-05 00:49:18
阅读次数:
251