python tips

巴扎黑
发布: 2016-12-09 13:27:14
原创
2774人浏览过

1、enum 

Python代码  

1

2

3

4

5

6

7

8

#!/usr/bin/env python 

# -*- coding:utf-8 -*- 

   

def enum(**enums): 

    return type('Enum', (), enums) 

Gender = enum(MALE=0,FEMALE=1

print Gender.MALE 

print Gender.FEMALE

登录后复制



2、检查字符串是否是number 

Python代码  

1

2

s='123456789' 

s.isdigit()#return True

登录后复制


3、list取交集 

立即学习Python免费学习笔记(深入)”;

Python代码  

1

2

3

s=[1,2,3

w=[2,3,4

list(set(s).intersection(w))

登录后复制


4、两个list转成一个dict 

Python代码  

1

dict(zip(a,b))

登录后复制



5、singleton 

Python代码  

1

2

3

4

5

6

7

def singleton(cls): 

    instances = {} 

    def get_instance(): 

        if cls not in instances: 

            instances[cls] = cls() 

        return instances[cls

    return get_instance

登录后复制


第二种tornado IOLoop中使用的单例模式: 

Python代码  

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

@staticmethod 

def instance(): 

    """Returns a global IOLoop instance.

  

    Most single-threaded applications have a single, global IOLoop.

    Use this method instead of passing around IOLoop instances

    throughout your code.

  

    A common pattern for classes that depend on IOLoops is to use

    a default argument to enable programs with multiple IOLoops

    but not require the argument for simpler applications::

  

        class MyClass(object):

            def __init__(self, io_loop=None):

                self.io_loop = io_loop or IOLoop.instance()

    """ 

    if not hasattr(IOLoop, "_instance"): 

        with IOLoop._instance_lock: 

            if not hasattr(IOLoop, "_instance"): 

                # New instance after double check 

                IOLoop._instance = IOLoop() 

    return IOLoop._instance

登录后复制


6、list排重 

Python代码  

1

{}.fromkeys(list).keys()

登录后复制
python速学教程(入门到精通)
python速学教程(入门到精通)

python怎么学习?python怎么入门?python在哪学?python怎么学才快?不用担心,这里为大家提供了python速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!

下载
来源:php中文网
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
最新问题
开源免费商场系统广告
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 意见反馈 讲师合作 广告合作 最新更新
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习
PHP中文网抖音号
发现有趣的

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号