python
文章平均质量分 56
qonsnow
这个作者很懒,什么都没留下…
展开
-
FindWin10Old32ExE
文章目录FindWin10Old32ExEFindWin10Old32ExEimport osimport pefileexe_exception = open("exe_exception", "a")exe_32 = open("exe_32", "a")for root, dirs, files in os.walk(r"C:\\Windows"): for file in files: #print(root) fullname = os.p原创 2021-04-08 00:25:53 · 1396 阅读 · 0 评论 -
Python基本数据类型
Python基本数据类型Python基本数据类型数字基本运算字符串字符串格式化字符串的索引字符串方法Python基本数据类型主要有数字数字 整形 int long 浮点 float 注意:long类型在Python3中已经被取消了 基本运算 加 + 减 -乘 x...原创 2018-07-15 18:10:27 · 203 阅读 · 0 评论 -
Python 函数
Python函数函数是一个可以被重复调用的带有一个入口和一个出口的固定程序段。Python函数定义def print_string(name): print(name)print_string("Zhai");Python参数形参实参默认参 def print_string(name="none")参数组 def print_string(*names) d...原创 2018-07-15 18:50:31 · 151 阅读 · 0 评论