刚好安装了pycharm,打算用这个ide来开发python,所以新建了一个django的工程,但是提示django的第三方库安装失败。真坑爹啊。 Exception:
Traceback?(most?recent?call?last):
??File?"C:\Python27\lib\...
分类:
其他好文 时间:
2014-09-09 16:25:29
阅读次数:
285
mporttypestype(x)istypes.IntType#判断是否int类型type(x)istypes.StringType#是否string类型.........--------------------------------------------------------超级恶心的模式,不用记住types.StringTypeimporttypestype(x)==types(1)#判断是否int类型type(x)==type(‘a‘)#..
分类:
编程语言 时间:
2014-09-04 19:32:21
阅读次数:
246
Python学习1.列表[]1.1)列表是处理一组有序项目的数据结构,即你可以在一个列表中存储一个序列的项目。1.2)列表时可变数据类型1.3)列表的组成:用[]标示列表,包含多个用逗号隔开的数字或者字符串举例:list[1,2,3]list1[‘aaa’,123,’”qwsx”]空列表list[]注意:在定义时..
分类:
编程语言 时间:
2014-08-22 14:36:59
阅读次数:
215
当pycharm开发python时,中文出现乱码修改setting文件这样就能正常显示
分类:
编程语言 时间:
2014-08-18 16:36:13
阅读次数:
250
今天在mac下安装了MySqL + MySQLWorkbench + PyCharm
安装这些东西没有在windows下熟悉。
在Mac下安装程序真的不是很适应,感觉很不爽!!!安装完成后还是蛮高兴,后面可以做自己要做的事情了。
通过查阅各种各样的资料,去安装这些东东。最后经过一番周折终于安装完成。下面是对安装过程和遇到的问题做个简单记录。...
分类:
数据库 时间:
2014-08-16 21:07:41
阅读次数:
294
To quickly select the currently edited element (class, file, method or field) in any view (Project view, Structure view or other), press Alt+F1 (View ...
分类:
其他好文 时间:
2014-08-11 17:27:22
阅读次数:
297
Did you know that you can close tabs in the editor and the tool windows of PyCharm without actually using the context menu commands? It is enough to p...
分类:
其他好文 时间:
2014-08-11 11:23:52
阅读次数:
211
When using Code Completion, you can accept the currently highlighted selection in the popup list with the Tab key.Unlike accepting with the Enter k...
分类:
其他好文 时间:
2014-08-08 09:33:15
阅读次数:
252
To navigate to the declaration of a class, method or variable used somewhere in the code, position the caret at the usage and press Ctrl+B. You may al...
分类:
其他好文 时间:
2014-08-07 12:12:10
阅读次数:
315
Python中常见的数据结构可以统称为容器(container)。序列(如列表和元组)、映射(如字典)以及集合(set)是三类主要的容器。一、序列(列表、元组和字符串)序列中的每个元素都有自己的编号。Python中有6种内建的序列。其中列表和元组是最常见的类型。其他包括字符串、Unicode字符串、...
分类:
编程语言 时间:
2014-08-04 21:11:29
阅读次数:
398