Python
千鸟渡落日
小白进击史
展开
-
Pathon学习之路(一)
1.首先下载VirtualBoxhttps://www.virtualbox.org/wiki/Downloads这是一款开源虚拟机软件2.VirtualBox使用指南https://www.virtualbox.org/manual/ch01.html#intro-installing然后再虚拟机中装Linux系统,当然我们一般电脑都是Windows,在自己电脑再装windo...原创 2018-10-15 10:35:00 · 3867 阅读 · 0 评论 -
Python学习(一)——准备开发环境
注意!此文为在Windows。1.python解释器下载、安装、配置Python官网:https://www.python.org/下面下载的是python2,个人认为这是经典版 下载安装过程比较easy,自己装吧。需要在环境变量中配置path通过dos命令进入python编译C:>python # Windows/DOS//进入到python...原创 2018-10-30 15:22:33 · 386 阅读 · 0 评论 -
如何卸载PyCharm中的第三方包
1.file-seting2.project-project interpreter3.卸载PyMySQL4.原创 2018-10-30 15:34:41 · 29572 阅读 · 1 评论 -
_mysql.c(42) : fatal error C1083: Cannot open include file: 'config-win.h': No such file or director
在win10下安装了python后,想安装pip install MySQL-python,使用pip安装出现如下问题:问题是:缺少C++的相关环境解决方案:在http://www.lfd.uci.edu/~gohlke/pythonlibs/#mysql-python下载对应的包版本如果是win7 64位2.7版本的python,就下载MySQL_python-1.2.5...原创 2018-10-30 16:42:27 · 1559 阅读 · 1 评论 -
Pycharm中修改编码格式为中文
我们再编程中往往会用到中文,怎么让Pycharm适应中文呢?两张图如下:原创 2018-11-06 17:28:56 · 12341 阅读 · 0 评论 -
Python学习(二)——数据类型和基本语法
1.五个数据类型Python有五个标准的数据类型:Numbers(数字) String(字符串) List(列表) Tuple(元组) Dictionary(字典)2.数字类型Python支持四种不同的数字类型:int(有符号整型) long(长整型[也可以代表八进制和十六进制]) float(浮点型) complex(复数)3.保留字符所有 Python 的...原创 2018-11-08 16:08:10 · 331 阅读 · 0 评论 -
TypeError: list indices must be integers, not tuple.
1.第一个例子str = 'Hello World!'>>> print str[-3]l>>> print str[-1]!>>> print str[-1,-3]Traceback (most recent call last): File "<stdin>", line 1, in <modul原创 2018-11-08 16:17:37 · 5686 阅读 · 0 评论 -
Python学习(三)—— 循环、索引、迭代
好久没有学习了例1.循环遍历for letter in 'Python': # 第一个实例 print '当前字母 :', letter fruits = ['banana', 'apple', 'mango']for fruit in fruits: # 第二个实例 print '当前水果 :', fruit print "Good bye...原创 2018-12-17 11:31:24 · 343 阅读 · 0 评论 -
python-py文件在windows下乱码
1.windows下CMD运行.py文件出现乱码出现了乱码2.转换完字符编码,然后正确了3.原因:python2中,CMD默认gbk编码,所以只能把代码中的中文进行gbk编码了。 utf-8通过解码转化为unicode,然后将unicode编码转化为gbk # -*- coding: UTF-8 -*-content="hello,feifei"co...原创 2018-12-17 11:31:05 · 3087 阅读 · 0 评论