• MIT人工智能实验室
  • 大数据分析平台
  • 游戏开发《骑马与砍杀》
  • 量化金融分析
  • python爬虫
  • python django web框架
MIT人工智能实验室 大数据分析平台 游戏开发《骑马与砍杀》 量化金融分析 python爬虫 python django web框架
  • Python支持tab键补全

    auto 2019-07-13 11:37:12 python

    1334°

    20

    Python支持tab键补全
  • python命令行参数

    auto 2019-07-13 11:37:12 python

    1403°

    20

    python 命令行参数 if __name__ == '__main__': if len(sys.argv)<3: print "usage :",sys.argv[0],'random_id_num pre_of_id' &
  • 安装MySQL-python报错

    auto 2019-07-13 11:37:12 python

    1341°

    20

    _mysql.c: 在函数‘DL_EXPORT’中: _mysql.c:3058: 错误:expected declaration specifiers before ‘init_mysql’ _mysql.c:3166: 错误:expected ‘{’ at end of input err
  • 关于python中的IO流

    auto 2019-07-13 11:37:12 python

    1063°

    20

    python IO流
  • python logging 模块

    auto 2019-07-13 11:37:12 python

    1316°

    20

    python logging模块 importsysimportlogging#首先获得一个类logger=logging.getLogger('example')#example为名字logger.setLeve
  • yaml和python关系实例

    auto 2019-07-13 11:37:12 python

    1666°

    20

    一、yaml和python的关系实例: 1、 yaml格式文件:base: - name: wang - age: 33 - site: - web1: http:/www/baidu.com - web2: http://www.163.com2、python解析脚本:#!/u
  • Python基础(list类)

    auto 2019-07-13 11:37:12 python

    1240°

    20

    三、列表(list类)提示:以下所有方法都是类中的方法,第一个参数都是self,统一都没有写出。包含的方法有:1、append(x) #将x添加到List末尾。>>>list=['a']>>>list.append('b')>>>list['a','b']2、extend(L) #将表L附加到末尾,合并两个列表。>
  • python中的模块

    auto 2019-07-13 11:37:12 python

    1384°

    20

    模块:随着程序变的越来越大 为了便于维护 需要把它分为多个文件 为此python允许把定义放入一个文件 然后在其他脚本中将其作为模块导入 创建模块: 将相关的语句和定义放入与模块同名的文件中 #file:module.py defnumValue(a,b): q=a/b &nbs
  • Python算法题----Valid P

    auto 2019-07-13 11:37:12 python

    1525°

    20

    python验证回文字符串
  • Python 生成器 generator

    auto 2019-07-13 11:37:12 python

    1196°

    20

    python 生成器
  • Python基础:文件读写

    auto 2019-07-13 11:37:12 python

    1173°

    20

    由于CPU和内存的速度远远高于外设的速度,所以,在IO编程中,就存在速度严重不匹配的问题。举个例子来说,比如要把100M的数据写入磁盘,CPU输出100M的数据只需要0.01秒,可是磁盘要接收这100M数据可能需要10秒,怎么办呢?有两种办法:第一种是CPU等着,也就是程序暂停执行后续代码,等100M的数据在10秒后写入磁盘,再接着往下执行,这种模式称为同步IO;另一种方法
  • python 虚环境部署

    auto 2019-07-13 11:37:12 python

    1352°

    20

    #!/bin/bashyum install -y python-virtualenv.noarchyum install -y git.x86_6mkdir -p /home/himalayas/virtualenv/python2.6-skvirtualenv --python=/usr/bin/python2.6 /home/himalayas/virtualenv/python
  • python的len函数

    auto 2019-07-13 11:37:12 python

    1181°

    20

    python的len函数:Pythonlen()方法返回对象(字符、列表、元组等)长度或项目个数。如:ret=os.popen('netstat-ntpl|grepapache2').readlines()iflen(ret)<1:
  • Python之装饰器

    auto 2019-07-13 11:37:12 python

    1379°

    20

    在Python中一切皆对象,函数是一等对象。这意味着可以通过名字引用函数。>>>a=123 >>>a 123 >>>name='zeng' >>>name 'zeng' >>>deffunc(): ... 
  • python-object-one-ne

    auto 2019-07-13 11:37:12 python

    1467°

    20

    python-object-one-new
  • python dict的list排序

    auto 2019-07-13 11:37:12 python

    1481°

    20

    对于简单的list排序,直接调用内建函数就可以了,但是对于dict的list排序就没有那么直接了,不过,还是有很简洁的办法的,如: >>> ls1 = [{'a' : 1, 'b' : 12}, {'a' : -1, 'b' : 22},{'a' : 12, 'b' : 32},{'a' : 6, 'b' : 42}] >>> ls1.sort(key=
  • python切片详解

    auto 2019-07-13 11:37:12 python

    1594°

    20

    先从原理上分析切片运算:list的切片,内部是调用__getitem__,__setitem__,__delitem__和slice函数。而slice函数又是和range()函数相关的。给切片传递的键是一个特殊的slice对象。该对象拥有可描述所请求切片方位的属性,例如:a = [ 1, 2, 3, 4, 5, 6 ]x = a [ 1 : 5 ] # x = a.__getitem_
  • Earn RS3gold 3500M 6

    auto 2019-07-13 11:35:13 python

    1422°

    20

    ThedevelopedbloggivesussometipstotrainWarding.WhichisveryexcitedthatOSRSWardingtrainningcanbeeasytolearnnow,andatthesametimeyoushouldalsoknowaboutthegreatEasterflashsalewillbeginsonApr19,Solearnthetip
  • 在HC3上配置VLAN

    auto 2019-07-13 11:35:13 python

    1444°

    20

    组网需求(配置手册03,第155页)•HostA和HostC属于部门A,但是通过不同的设备接入公司网络;HostB和HostD属于部门B,也通过不同的设备接入公司网络。•为了通信的安全性,也为了避免广播报文泛滥,公司网络中使用VLAN技术来隔离部门间的二层流量。其中部门A使用VLAN100,部门B使用VLAN200。•现要求不管是否使用相同的设备接入公司网络,同一VLAN内的主机能够互通,即Hos
  • 3-7 run vs cmd vsent

    auto 2019-07-13 11:35:13 python

    1704°

    20

    ![](https://s1.51cto.com/images/blog/201904/09/54a1c4dc39a6f0076d97d7dea07c195a.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_100,g_se,x_10,y_10,shadow_90,type_ZmFuZ3p