摘要: 转自:https://www.cnblogs.com/vijayfly/p/6234575.html shell将标准错误输出重定向到 其他地方 经常可以在一些脚本,尤其是在crontab调用时发现如下形式的命令调用: /tmp/test.sh > /tmp/test.log 2>&1 前半部分/t 阅读全文
posted @ 2018-06-19 11:25 Presley 阅读(2513) 评论(0) 推荐(1) 编辑
摘要: 转自:https://www.cnblogs.com/aaronLinux/p/8340281.html 阅读全文
posted @ 2018-06-19 11:05 Presley 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 一、获取对应路径下文件的名字 >>> os.path.basename("/etc/sysconfig/selinux") 'selinux' >>> os.path.basename("/usr/local/python3/bin/python3") 'python3' 阅读全文
posted @ 2018-06-19 11:04 Presley 阅读(7487) 评论(0) 推荐(0) 编辑
摘要: 一、打开文件的模式有: 1、r,只读模式【默认】。 2、w,只写模式。【不可读,不存在则创建,存在则删除内容】 3、a,追加模式。【可读,不存在则创建,存在则只追加内容】 二、+ 表示可以同时读写某个文件 1、r + ,可读写文件。【可读,可写,可追加】 2、w+,写读 3、a+ 同a 三、"U"表 阅读全文
posted @ 2018-06-18 17:01 Presley 阅读(701) 评论(0) 推荐(0) 编辑
摘要: 一、all():里面所有为真才为真。 all([],'',{}) 二、any()只要有一个为真就为真。 三、bool()里面为None,空字符串,空列表、空字典都为假。 四、ascii(8) == int.__repr__() 五、bin(10):转换为二进制 六、callable() :判断函数能 阅读全文
posted @ 2018-06-17 21:54 Presley 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 一、lambda:简单函数的表达式. 1、 2、lambda的书写方式为: 阅读全文
posted @ 2018-06-17 17:00 Presley 阅读(140) 评论(0) 推荐(0) 编辑
摘要: F9:执行跳到下一个断点 F8:执行下一步 F7:进入函数 阅读全文
posted @ 2018-06-16 10:42 Presley 阅读(175) 评论(0) 推荐(0) 编辑
摘要: TDSQL 阅读全文
posted @ 2018-06-15 17:23 Presley 阅读(392) 评论(0) 推荐(0) 编辑
摘要: https://www.zybuluo.com/mdeditor#1183034 阅读全文
posted @ 2018-06-15 09:36 Presley 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 一、数字字符串拷贝 二、浅拷贝。 三、深拷贝 阅读全文
posted @ 2018-06-14 21:45 Presley 阅读(142) 评论(0) 推荐(0) 编辑