摘要: from functools import reduce CHAR_TO_FLOAT = { '0': 0, '1': 1, '2': 2, '3': 3, '4': 4, '5': 5, '6': 6, '7': 7, '8': 8, '9': 9, '.': -1 } def str2float(s): ... 阅读全文
posted @ 2017-02-06 16:26 DevOps_QXW 阅读(1316) 评论(0) 推荐(0) 编辑
摘要: 注意,赋值语句: 相当于: 阅读全文
posted @ 2017-02-04 22:30 DevOps_QXW 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1.说明 fish is a fully-equipped command line shell (like bash or zsh) that is smart and user-friendly. fish supports powerful features like syntax highl 阅读全文
posted @ 2017-01-19 14:07 DevOps_QXW 阅读(1502) 评论(0) 推荐(0) 编辑
摘要: 说明:1)nohup执行后,需要回车跳过当前命令,$str变量表示回车;2)nohup需要用相对路径执行;3)将脚本加入rc.local中执行开机自启。 阅读全文
posted @ 2017-01-12 09:35 DevOps_QXW 阅读(3562) 评论(0) 推荐(0) 编辑