• 022configparser模块

    #配置模块 #创建 import configparser config = configparser.ConfigParser() #添加 config["DEFAULT"] = {'ServerAliveInterval':'45', 'Compression':'yes', 'CompressionLevel':'9'} config['bitbucket.org'] = {'User':'hg'} #config['bitbucket.org']={} #config[...

    2018-06-18 00:13:09

  • 021logging模块

    ## importlogging logging.debug('debug message') logging.info('info message') logging.warning('warning message') # WARNING:root:warning message logging.error('error message') # ERROR:root:error message logging.critical('critical message') # CRITICAL:...

    2018-06-18 00:13:01

  • Mac下PyCharm快捷键大全

    Mac键盘符号和修饰键说明 ? Command ? Shift ? Option ? Control ?? Return/Enter ? Delete ? 向前删除键(Fn+Delete) ↑ 上箭头 ↓ 下箭头 ← 左箭头 → 右箭头 ? Page Up(Fn+↑) ? Page Down(Fn+↓) Home Fn + ← End Fn + → ? 右制表符(Tab键) ? 左制表符(...

    2018-06-18 00:12:26

  • py3.6 + xadmin的自学网站搭建

    xadmin安装 由于安装时需要依赖包并且暂时不支持py3等原因,直接pip install的方法很容易就狗带了。 说一下我在网上找到的安装方式,在GitHub上有这个项目的开源代码,并且还有很多个版本可以选择。 克隆一份,clone地址:xadmin,新建一个空白的README.rst代替之前的...

    2018-06-18 00:12:35

  • p2:千行代码入门python

    非原创,系转载。 1 # _*_ coding: utf-8 _*_ 2 3 """ 类型和运算----类型和运算----类型和运算----类型和运算----类型和运算----类型和运算----类型和运算----类型和运算----类型和运算----类型和运算----类型和运算 """ 4 5 # -- 寻求帮助: 6 dir(obj) # 简单的列出...

    2018-06-18 00:12:23

  • python 闭包 闭包与装饰器之间的关系

    一、一个闭包的实际应用例子 1 def func(a, b): 2 def inner(x): 3 return a * x + b 4 return inner 5 6 inn = func(1, 1 ) 7 print (inn(1 )) 8 inn2 = func(-1, 1 ) 9 print (inn2(1)) 二、闭包传递的参数为函数。 1 def func(func_temp): 2 def inner(x): 3 func_t...

    2018-06-18 00:11:59

  • Python入门 —— 01简介

    ...

    2018-06-18 00:12:20

  • python 装饰器

    一、无参数,无返回值的装饰器 1 def check(func): 2 def inner(): 3 print ( ' def ' ) 4 func() 5 return inner 6 7 @check # foo = check(foo) 8 def foo(): 9 print ( ' abc ' ) 10 11 foo() 二、2个装饰器 1 # -*- coding:utf-8 -*- 2 3 def check(func): 4 def i...

    2018-06-18 00:12:14

  • Python中的三元运算

    Python中的三元运算 三元运算又称三目运算。 B=1 If B==1: a=123 else : a=456 上面程序等价于: B=1 a=123 if B==1 else 456 如果条件满足则a=123,否则a=456...

    2018-06-18 00:12:13

  • 竞猜游戏小玩

    1 # -*- coding:utf-8 -*- 2 3 import random 4 5 go =1 6 while go == 1 : 7 num_start = int(raw_input( ' 请输入开始的数字: ' )) 8 num_end = int(raw_input( ' 请输入结束的数字: ' )) 9 f = int(raw_input( ' 请输入循环的次数: ' )) 10 pk = int(raw_input(...

    2018-06-18 00:11:29

2