• django 1初始化设置 2上线前需要更改配置 3默认pip

    待整理...

    2018-06-18 02:17:08

  • [Python] 动态函数调用(通过函数名)

    2018-04-09 update 利用python中的内置函数 eval() ,函数说明: def eval(*args, **kwargs): # real signature unknown """ Evaluate the given source in the context of globals and locals. The source may be a string representing a Python expression or a cod...

    2018-06-18 02:17:40

  • Hello world!

    不知道为什么,发现我喜欢编程,正像我喜欢那句: Hello world! 一样,每一种编程语言,敲出了第一段输出代码文字,代表着一个新的起点。 现如今,我在学习python, 从 python 2.x print ' Hello world! ' 到 python 3.x print ( ' Hello world! ' ) # the end...

    2018-06-18 02:17:23

  • staticmethod classmethod

    1. 静态方法 @staticmethod 只是名义上归类管,实际上静态方法里访问不了类或者实例中的任何属性 2. 类方法 @classmethod 只能访问类变量,不能访问实例变量 3.属性方法 @property 把一个方法变成一个属性,不可以传变量...

    2018-06-18 02:17:38

  • linux系统编程-进程

    进程 现实生活中 在很多的场景中的事情都是同时进行的,比如开车的时候 手和脚共同来驾驶汽车,再比如唱歌跳舞也是同时进行的; 如下是一段视频,迈克杰克逊的一段视频: http://v.youku.com/v_show/id_XMzE5NjEzNjA0.html?sid=40117from=y1.2-1.999.6 试想:如果把唱...

    2018-06-18 02:17:28

  • 15-模块

    模块 python中的模块 有过C语言编程经验的朋友都知道,在C语言中如果要引用sqrt函数,必须用语句#include math.h引入math.h这个头文件,否则是无法正常进行调用的。 那么在python中,如果要引用一些其他的函数,该怎么处理呢? 在python中,有一个概念叫做模块(module...

    2018-06-18 02:17:25

  • Python读取TXT格式文件遇到的文件编码规则转换问题Uni

    在大多数人使用Windows中文版本的情况下,使用Python从TXT文件中读取数据时,初学者经常会遇到由于文档编码规则差异导致文档读取报错,例如,如下报错: UnicodeDecodeError: 'gbk' codec can't decode byte 0xa7 in position 14: illegal multibyte sequence 从以上报...

    2018-06-18 02:17:16

  • python初体验

    python第一次接触时感觉简洁明了,没有c语言烦多,第一课学了打印有关交互的知识。 '''username = input("userane:") password = input("password:") print(username,password)''' name = input("name:") age = input("age:") job = input("job:") salary = input("sal...

    2018-06-18 02:16:59

  • Python网络爬虫笔记(一):网页抓取方式和LXML示例

    (一) 三种网页抓取方法 1、 正则表达式: 模块使用C语言编写,速度快,但是很脆弱,可能网页更新后就不能用了。 2、 Beautiful Soup 模块使用Python编写,速度慢。 安装: pip install beautifulsoup4 3、 Lxml 模块使用C语言编写,即快速又健壮,通常应该是最好的选...

    2018-06-18 02:17:05

  • 草稿 富文本编辑器

    https://github.com/django-ckeditor/django-ckeditor https://django-ckeditor.readthedocs.io/en/latest/ RichTextField , RichTextUploadingField , CKEditorWidget and CKEditorUploadingWidget from ckeditor_uploader.widgets import CKEditorUploadingWidget fr...

    2018-06-18 02:16:58

2