嘿,小家伙儿

导航

2021年11月1日 #

Python OS 文件/目录方法

摘要: os 模块提供了非常丰富的方法用来处理文件和目录。常用的方法如下表所示: 序号方法及描述 1 os.access(path, mode) 检验权限模式 2 os.chdir(path) 改变当前工作目录 3 os.chflags(path, flags) 设置路径的标记为数字标记。 4 os.chm 阅读全文

posted @ 2021-11-01 21:48 嘿,小家伙儿 阅读(28) 评论(0) 推荐(0)

pass

摘要: 对应于python就要这样写: if true:pass #do nothingelse:#do something 1 pass语句在函数中的作用当你在编写一个程序时,执行语句部分思路还没有完成,这时你可以用pass语句来占位,也可以当做是一个标记,是要过后来完成的代码。比如下面这样: def i 阅读全文

posted @ 2021-11-01 21:38 嘿,小家伙儿 阅读(309) 评论(0) 推荐(0)

continue

摘要: 使用break的时候,循环如下: for i in range(1,10): for j in range(2,4): if i % j == 0: break else: print(i,j) 1 2 1 3 3 2 5 2 5 3 7 2 7 3 9 2 使用continue 的时候,循环如下: 阅读全文

posted @ 2021-11-01 21:22 嘿,小家伙儿 阅读(181) 评论(0) 推荐(0)

break

摘要: range() 函数,包括开始的1,但是不包括结尾的10. 阅读全文

posted @ 2021-11-01 21:16 嘿,小家伙儿 阅读(50) 评论(0) 推荐(0)

函数定义与参数

摘要: 关键字 def 引入了一个函数 定义。在其后必须跟有函数名和包括形式参数的圆括号。函数体语句从下一行开始,必须是缩进的。 函数体的第一行语句可以是可选的字符串文本,这个字符串是函数的文档字符串,或者称为 docstring。(更多关于 docstrings 的信息请参考 文档字符串) 有些工具通过 阅读全文

posted @ 2021-11-01 20:44 嘿,小家伙儿 阅读(90) 评论(0) 推荐(0)

细节|break、continue、pass

摘要: 阅读全文

posted @ 2021-11-01 20:33 嘿,小家伙儿 阅读(50) 评论(0) 推荐(0)

python学习资料(内附地址)

摘要: 1.菜鸟基础篇: python3中文手册 RUNOOB.COM https://docs.python-guide.org/ https://docs.python.org/zh-tw/3/library/stdtypes.html 阅读全文

posted @ 2021-11-01 20:28 嘿,小家伙儿 阅读(36) 评论(0) 推荐(0)

小细节|range函数、input()、

摘要: 1.range函数:需要注意的是:range,不包括范围中的结束值 2.python3 中用input函数代替 raw_input. 阅读全文

posted @ 2021-11-01 20:24 嘿,小家伙儿 阅读(92) 评论(0) 推荐(0)

enumerate用法

摘要: 方法解读:enumerate(iterable, start=0) Return an enumerate object. iterable must be a sequence, an iterator, or some other object which supports iteration. 阅读全文

posted @ 2021-11-01 20:18 嘿,小家伙儿 阅读(83) 评论(0) 推荐(0)