1、编辑工具:PyCharm4.5.1http://www.jetbrains.com/pycharm/download/ 下载左侧的完全版2、安装好python3.3.5后http://rj.baidu.com/soft/detail/17016.html3、读取chengyu.txt,按行处理....
分类:
编程语言 时间:
2015-06-21 00:41:22
阅读次数:
334
本文介绍了PythonMySQLdbLinux下安装笔记,本文分别讲解了快速安装和手动编译安装两种方法,并分别讲解了操作步骤,需要的朋友可以参考下主要针对centos6.564位系统默认python版本为2.6编码安装python2.7和python3.4一、yum快速安装yuminstallMySQL-pythonyuminstallpython-setupt..
分类:
数据库 时间:
2015-06-20 22:12:00
阅读次数:
176
Python版本:3.4.3安装Lib库:pymysql代码结构树:主函数代码片dbcheck.py #!/usr/bin/python# -*- coding: utf-8 -*-import configinitimport pymysqldef execute_mysql(): conn...
分类:
数据库 时间:
2015-06-18 15:21:05
阅读次数:
155
Quadratic primes
Problem 27
Euler discovered the remarkable quadratic formula:
n² + n + 41
It turns out that the formula will produce 40 primes for the consecutive values n = 0 to 39. Howe...
分类:
编程语言 时间:
2015-06-17 21:37:46
阅读次数:
149
Distinct powers
Problem 29
Consider all integer combinations of ab for 2 ≤ a ≤ 5 and 2 ≤ b ≤ 5:
22=4, 23=8, 24=16, 25=32
32=9, 33=27, 34=81, 35=243
42=16, 43=64, 44=256, 45=1024
52=25, 5...
分类:
编程语言 时间:
2015-06-17 21:36:18
阅读次数:
220
首先用HomeBrew安装一下Python的3.4版本。苹果自带的Python,开发的话还是算了吧。在终端里输入下面这行命令。brew install python3接下来打开Sublime,语法修改为Python。输入print ('Hello World')注意,Python3中,print函数需要加上括号了。对于经常使用C,Java的新手,可能不太习惯不用加分号。写完这行代码之后,打开终端,输...
分类:
编程语言 时间:
2015-06-17 09:38:38
阅读次数:
154
最近的一个项目需要操作阿里云的RDS,项目使用python3,让人惊讶的是官方的SDK竟然只支持python2在阿里云现有SDK上改了改,文件的修改只涉及aliyun/api/base.py,详见https://github.com/yedf/aliyun-python修改后的代码在python2....
分类:
编程语言 时间:
2015-06-16 12:28:13
阅读次数:
569
1. 编译python bogon:kuoxin$ ./configure --prefix=/share/python3 --enable-shared bogon:kuoxin$ make bogon:kuoxin$ make install2. 编译wsgi bogo...
分类:
其他好文 时间:
2015-06-15 16:11:33
阅读次数:
140
pyotherside 试用这是啥?用python写qt步骤:安装qt: http://www.qt.io/download-open-source/#section-2安装python3:下载源代码 https://github.com/thp/pyotherside编译 pyotherside:...
分类:
其他好文 时间:
2015-06-13 21:32:26
阅读次数:
353
一般情况下,Python不包括OpenCV模块,需要自己安装或者配置,安装比较简单我就不说了,说一下自己下载模块,动手配置(因为lz用的是WinPython,绿色版非安装,虽然集成了很多模块,但是木有OpenCV,也不能直接安装,只能自己配置)那么首先要先下载模块包,可以去我的资源里下载Python2.x的32位OpenCV或64位OpenCV,若是Python3.x请到这里自行下载。下载完成后,文...
分类:
编程语言 时间:
2015-06-13 15:44:48
阅读次数:
339