摘要: getFilePath( 'cpu_usage.vbs', "On Error Resume Next Set objProc = GetObject(\"winmgmts:\\\\.\\root\cimv2:win32_processor='cpu0'\") WScript.Echo(objProc.LoadPercentage)... 阅读全文
posted @ 2019-05-04 13:47 样子2018 阅读(2411) 评论(0) 推荐(0) 编辑
摘要: 状态名 作用域 详细解释 Aborted_clients Global 由于客户端没有正确关闭连接导致客户端终止而中断的连接数 Aborted_connects Global 试图连接到MySQL服务器而失败的连接数 Binlog_cache_disk_use Global 使用临时二进制日志缓存但 阅读全文
posted @ 2019-05-04 12:43 样子2018 阅读(324) 评论(0) 推荐(0) 编辑
摘要: # int(x[, base]) 将x转换为一个整数,base为进制,默认十进制 # # long(x[, base] ) 将x转换为一个长整数 # # float(x) 将x转换到一个浮点数 # # complex(real[, imag]) 创建一个复数 # # str(x) 将对象 x 转换为字符串 # # repr(x) 将对象 x 转换为表达式字符串 # # eval(str) 用... 阅读全文
posted @ 2019-05-04 10:26 样子2018 阅读(29671) 评论(1) 推荐(3) 编辑
摘要: # Numbers(数字) # int(有符号整型) # long(长整型[也可以代表八进制和十六进制]) # float(浮点型) # complex(复数) # String(字符串) # List(列表)[] # Tuple(元组)() # Dictionary(字典){} if __name__ == "__main__": # 注意:long... 阅读全文
posted @ 2019-05-04 09:58 样子2018 阅读(327) 评论(0) 推荐(0) 编辑