上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 78 下一页
摘要: from sklearn.metrics import confusion_matrixy_true = [2, 0, 2, 2, 0, 1]y_pred = [0, 0, 2, 2, 0, 2]print confusion_matrix(y_true, y_pred) 结果: [[2 0 0] 阅读全文
posted @ 2016-03-04 14:21 qqhfeng16 阅读(369) 评论(0) 推荐(0) 编辑
摘要: 异常信息: SyntaxError: Non-ASCII character '\xe5' in file a.py on line 9, but no encoding declared; see http://www.python.org/peps/pep-0263.html for detai 阅读全文
posted @ 2016-03-04 14:06 qqhfeng16 阅读(687) 评论(0) 推荐(0) 编辑
摘要: 很多新手刚开始学习python的时候经常会看到python 中__name__ = \'__main__\' 这样的代码,可能很多新手一开始学习的时候都比较疑惑,python 中__name__ = '__main__' 的作用,到底干嘛的? 有句话经典的概括了这段代码的意义: “Make a sc 阅读全文
posted @ 2016-03-04 13:53 qqhfeng16 阅读(266) 评论(0) 推荐(0) 编辑
摘要: import os curDir = os.getcwd() 最近使用Python 写了很多脚本,想导入脚本,发现不知道如何查看python 的默认工作目录,并修改默认工作目录。 方法/步骤 查看默认工作路径的命令: import os os.getcwd() 2 修改工作路径的命令是(注意路径要用 阅读全文
posted @ 2016-03-04 09:09 qqhfeng16 阅读(2916) 评论(0) 推荐(0) 编辑
摘要: using System;using System.Collections.Generic;using System.Linq;using System.Web;using System.Text;using System.Data;using System.Collections;using My 阅读全文
posted @ 2016-02-27 16:11 qqhfeng16 阅读(211) 评论(0) 推荐(0) 编辑
摘要: ASP.NET Mysql操作类 以下连接MySql数据库以VS2010为例,对于其他的编辑器也差不多 1. 我们需要在Mysql官网下载一个组件http://dev.mysql.com/downloads/connector/net/ 下载最新版的即可,并且安装connector,其实仅仅只是为了 阅读全文
posted @ 2016-02-27 16:10 qqhfeng16 阅读(1665) 评论(0) 推荐(1) 编辑
摘要: 如果pip install --upgrade pip 删除了自己,但是无法安装新的自己。 那么下载最新的pip,解压 1、在命令窗口输入 python(前提条件已经在系统路径) setup.py(pip 包里的脚本) install 即可 2、注销一下,让pip在系统路径生效 3、打开cmd,输入 阅读全文
posted @ 2016-02-26 15:41 qqhfeng16 阅读(271) 评论(0) 推荐(0) 编辑
摘要: Visual Studio 2013旗舰版试用期结束后便不能正常使用,但是可以通过输入密钥的方式进行激活,经过尝试发现可以通过下面的方式进行激活并正常使用。 工具/原料 VS2013旗舰版 具体步骤 打开VS2013,找到注册产品 在下面框中输入密钥:BWG7X-J98B3-W34RT-33B3R- 阅读全文
posted @ 2016-02-26 15:38 qqhfeng16 阅读(1568) 评论(0) 推荐(0) 编辑
摘要: Access里like的通配符用法是这样: “?”表示任何单一字符; “*”表示零个或多个字符; “#”表示任何一个数字 所以应该是: select * from databasename where fieldname like '*XX*' 原来在SQL SERVER 里是用%%的,在ACCES 阅读全文
posted @ 2016-02-24 09:56 qqhfeng16 阅读(800) 评论(0) 推荐(0) 编辑
摘要: 官方网页要求在 cmd中输入以下命令进行 pip的 更新:(更新pip自己) python -m pip install -U pip 更新所有已安装的包 首先,安装pip。然后,pip list --outdated 列出所有过期的包最后用pip install --upgrade xxxx 来升 阅读全文
posted @ 2016-02-01 20:21 qqhfeng16 阅读(1894) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 78 下一页