上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 49 下一页
摘要: # capitalize()将字符串的第一个字符转换为大写 # center(width, fillchar)返回一个指定的宽度 width 居中的字符串,fillchar 为填充的字符,默认为空格。 # count(str, beg= 0,end=len(string))返回 str 在 string 里面出现的次数,如果 beg 或者 end 指定则返回指定范围内 str 出现的次数 # b... 阅读全文
posted @ 2019-05-05 21:35 样子2018 阅读(252) 评论(0) 推荐(0) 编辑
摘要: # file.close() 关闭文件。关闭后文件不能再进行读写操作。 # file.flush() 刷新文件内部缓冲,直接把内部缓冲区的数据立刻写入文件, 而不是被动的等待输出缓冲区写入。 # file.fileno()返回一个整型的文件描述符(file descriptor FD 整型), 可以用在如os模块的read方法等一些底层操作上。 # file.isatty()如果文件连接到一个终... 阅读全文
posted @ 2019-05-05 21:34 样子2018 阅读(198) 评论(0) 推荐(0) 编辑
摘要: 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 阅读(2422) 评论(0) 推荐(0) 编辑
摘要: 状态名 作用域 详细解释 Aborted_clients Global 由于客户端没有正确关闭连接导致客户端终止而中断的连接数 Aborted_connects Global 试图连接到MySQL服务器而失败的连接数 Binlog_cache_disk_use Global 使用临时二进制日志缓存但 阅读全文
posted @ 2019-05-04 12:43 样子2018 阅读(328) 评论(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 阅读(29678) 评论(1) 推荐(3) 编辑
摘要: # Numbers(数字) # int(有符号整型) # long(长整型[也可以代表八进制和十六进制]) # float(浮点型) # complex(复数) # String(字符串) # List(列表)[] # Tuple(元组)() # Dictionary(字典){} if __name__ == "__main__": # 注意:long... 阅读全文
posted @ 2019-05-04 09:58 样子2018 阅读(329) 评论(0) 推荐(0) 编辑
摘要: 效果如图: 阅读全文
posted @ 2019-04-27 17:03 样子2018 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 支付回调代码如下: 然后是你自己的逻辑处理。。。 阅读全文
posted @ 2019-04-26 17:12 样子2018 阅读(566) 评论(0) 推荐(1) 编辑
摘要: #include #include void array_sort(int *a, int len) { int i, j, tmp; for (i = 0; i a[j]) { tmp = a[i]; a[i] = a[j]; a[j] = tmp; ... 阅读全文
posted @ 2019-04-26 10:39 样子2018 阅读(2103) 评论(0) 推荐(0) 编辑
摘要: 利用dll注射工具进行执行runGo函数 阅读全文
posted @ 2019-04-24 22:24 样子2018 阅读(979) 评论(0) 推荐(0) 编辑
上一页 1 ··· 38 39 40 41 42 43 44 45 46 ··· 49 下一页