- 博客(14)
- 资源 (17)
- 收藏
- 关注
原创 fatal error: Python.h: 没有那个文件或目录 解决方法
这几天安装scrapy先说下环境 虚拟机Ubuntu16.04 系统默认Python 2.7.12 ,系统还自带3.5版本的,后来自己又装了3.6版本。在系统安装过程中,总是到twisted时报错,因为是源码安装的,所以系统要进行编译,但是找不到python.h文件!!!报错如下creating build/temp.linux-x86_64-2.7/sr
2017-12-26 10:01:00
37858
4
转载 scikit-learn 梯度提升树(GBDT)调参小结
转:http://www.cnblogs.com/pinard/p/6143927.html在梯度提升树(GBDT)原理小结中,我们对GBDT的原理做了总结,本文我们就从scikit-learn里GBDT的类库使用方法作一个总结,主要会关注调参中的一些要点。1. scikit-learn GBDT类库概述在sacikit-learn中,GradientBoo
2017-09-20 17:54:42
657
原创 Python编程:从入门到实践(课后习题10)
# 10-6 加法运算first_number = input("First number: ")second_number = input("Second number: ")try: add = int(first_number) + int(second_number)except ValueError: print("You must enter digits!!!")els
2017-09-19 11:08:31
3494
1
原创 Python编程:从入门到实践(课后习题11)
# 11-1 城市和国家# city_functions.pydef city_country(city, country): city = city country = country cc = city + ' ' + country return cc.title()# test_cities.pyimport unittestfrom city_functions im
2017-09-19 11:07:43
1564
1
原创 Python编程:从入门到实践(课后习题9)
# 10-6 加法运算first_number = input("First number: ")second_number = input("Second number: ")try: add = int(first_number) + int(second_number)except ValueError: print("You must enter digits!!!")els
2017-09-19 11:07:06
8923
原创 Python编程:从入门到实践(课后习题8)
# 8-1 消息def display_message(): print("This chapter I will learning function.")display_message()# 8-2 喜欢的图书def favorite_book(title): print("One of my favorite books is " + title + ".")favorit
2017-09-19 11:05:38
7595
原创 Python编程:从入门到实践(课后习题7)
# 7-1 汽车租car = input("What kind of car do you want to rent: ")print("Let me see if I can find you a " + car.title())# 7-2 餐馆订位restaurant = int(input("How many people are dining: "))if restaurant
2017-09-19 11:04:07
5176
原创 Python编程:从入门到实践(课后习题6)
# 6-1 人name = { 'first_name': 'lili', 'last_name': 'zhang', 'age': 18, 'city': 'guangzhou'}print(name['first_name'] + ', ' + name['last_name'] + ', ' + str(name['age']) + ', ' + name['city
2017-09-19 11:03:26
3791
1
原创 Python编程:从入门到实践(课后习题5)
# 5-3 外星人颜色#1alien_color = 'green'if alien_color == 'green': print('You get 5 point.')alien_color = 'yellow'if alien_color == 'green': print('You get 5 point.')# 5-4 外星人颜色#2alien_color = 'yel
2017-09-19 11:02:12
5152
4
原创 Python编程:从入门到实践(课后习题4)
# 4-1 比萨pizzas = ['seafood', 'sausage', 'cheese']for i in pizzas: print(i)for i in pizzas: print('I like ' + i + ' pizza') # 4-1-1for i in pizzas: print('I like ' + i + ' pizza')pr
2017-09-19 11:01:33
5596
原创 Python编程:从入门到实践(课后习题3)
# 3-1 姓名names = ['Zhou Kai', 'Zhang Lili', 'Liu Jie', 'Zhou Ting', 'Zhou Jing']for i in names: print(i)# 3-2 问候语names = ['Zhou Kai', 'Zhang Lili', 'Liu Jie', 'Zhou Ting', 'Zhou Jing']for i in n
2017-09-19 10:57:09
2549
原创 解决python中无法运行长SQL语句
SQL语句过长,导致"End of statement expected"和"Missing closing quote ["]"错误:解决方法一:将SQL语句调整为一行;解决方法二:使用三引号‘’‘ ’‘’。
2017-08-04 16:38:13
5842
原创 Pyhton核心编程第二版第八章练习8-8,8-9
8-8. 阶乘def fac(x): s = 1 while x > 0: s = s * x x -= 1 print(s)8-9. 斐波那契数列def fib(x): x -= 1 s = 1 n = 0 while x > 0: s, n = s + n, s
2017-08-02 11:46:48
262
pydata-book-master《利用Python进行数据分析》
2017-12-28
Learning_Tableau&Tableau;数据可视化实战(迷你书)
2017-12-27
Python for Data Analysis, 2nd Edition(英文原版)--附GitHub中文翻译版
2017-12-26
Python机器学习实践:测试驱动的开发方法(试读版).pdf
2017-12-26
VMwareTools-10.1.15-6627299.tar.gz
2017-12-22
基于R语言的自动数据收集
2017-12-15
R Data Import/Export
2017-09-27
ggplot2 Elegant Graphics for Data Analysis (Use R!)
2017-09-27
ggplot2:数据分析与图形艺术
2017-09-27
谁说菜鸟不会数据分析(工具篇)
2017-09-27
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人