摘要: 一:math 数学模块import math#(1)ceil() 向上取整操作 (对比内置round)res = math.ceil(6.001) #注意精度损耗print(res)#(2)floor() 向下取整操作 (对比内置round)res = math.floor(3.5)res = ma 阅读全文
posted @ 2018-08-07 21:58 pycoder_hsz 阅读(295) 评论(0) 推荐(0) 编辑
摘要: 一: os 对系统进行操作 #注:以下操作都在linux环境下操作,且很多运行之前需要做好相关条件import os#(1)system() 在python总执行系统命令#os.system("touch ceshi.txt") #linux#os.system("ifconfig") # os.s 阅读全文
posted @ 2018-08-07 19:01 pycoder_hsz 阅读(882) 评论(0) 推荐(0) 编辑