摘要: os.getcwd() 获取当前工作目录,即当前python脚本工作的目录路径 os.chdir("dirname") 改变当前脚本工作目录;相当于shell下cd os.curdir 返回当前目录: ('.') os.pardir 获取当前目录的父目录字符串名:('..') os.makedirs('dirname1/dirname2') 可生成多层递归目录 os.removedi... 阅读全文
posted @ 2018-11-04 17:27 986428528 阅读(122) 评论(0) 推荐(0)
摘要: 67UM[1, 8, 10, 15, 21, 22] [13] 阅读全文
posted @ 2018-11-04 17:25 986428528 阅读(159) 评论(0) 推荐(0)
摘要: 1541404843.15time.struct_time(tm_year=2018, tm_mon=11, tm_mday=5, tm_hour=16, tm_min=0, tm_sec=43, tm_wday=0, tm_yday=309, tm_isdst=0)2018-11-05:16:00 阅读全文
posted @ 2018-11-04 16:24 986428528 阅读(96) 评论(0) 推荐(0)
摘要: logging级别: 应用2:修改logging模块的默认参数,然后使用 终极使用:配置dict logger=get_logger('__file__') logger.info("hhhh") 阅读全文
posted @ 2018-11-04 15:07 986428528 阅读(130) 评论(0) 推荐(0)
摘要: [(3000, 'a'), (10000, 'b'), (1000, 'c'), (2000, 'd')] max(res) zip map <map object at 0x02113190>[2, 3, 4] 阅读全文
posted @ 2018-11-03 06:04 986428528 阅读(152) 评论(0) 推荐(0)
摘要: [1, 2, 10, 30, 33, 99, 101, 200, 301, 311, 402, 403, 500, 900, 1000][1, 2, 10, 30, 33, 99, 101][33, 99, 101][33]33 4 阅读全文
posted @ 2018-11-03 03:16 986428528 阅读(127) 评论(0) 推荐(0)
摘要: [1, 2, 10, 30, 33, 99, 101, 200, 301, 311, 402, 403, 500, 900, 1000][1000, 900, 500, 403, 402, 311, 301, 200, 101, 99, 33, 30, 10, 2, 1] #反向输出[1, 2, 1 阅读全文
posted @ 2018-11-03 02:35 986428528 阅读(95) 评论(0) 推荐(0)
摘要: 三元表达式: 姓名>>: wesleyNB 列表推导式: 生成器表达式: (expression for iter_val in iterable) (expression for iter_val in iterable if cond_expr) None['wesley'] 阅读全文
posted @ 2018-11-02 09:51 986428528 阅读(264) 评论(0) 推荐(0)
摘要: 迭代器: <list_iterator object at 0x005A3150>Traceback (most recent call last):123 File "F:/back01/hansu.py", line 261, in <module> print(iter_l.__next__( 阅读全文
posted @ 2018-11-02 03:01 986428528 阅读(100) 评论(0) 推荐(0)
摘要: eval()常见作用有: 1.eval(str): #str 表达式 2.将字符串转换成相应的对象: 阅读全文
posted @ 2018-11-02 00:21 986428528 阅读(131) 评论(0) 推荐(0)