Skip to content

Latest commit

 

History

History
25 lines (18 loc) · 530 Bytes

README.md

File metadata and controls

25 lines (18 loc) · 530 Bytes

learn-python

python2.7

一、编码命名规范

1. 参考:https://blog.csdn.net/warm77/article/details/78353632

二、常用函数:

1. 异常处理
    try:
    except Exception,e:
        print e
    finally:
        pass

2.文件操作
   a. os.path.isfile(file) == True|False
   b. 字符编码: str.encode('utf-8')
   c. for itm in xrange(len(list))
   d. str.replace('&amp','&')
   e: str.string.find('msgList') | str.string.rfind('}')
   f: