随笔分类 -  Python

摘要:http://c.biancheng.net/view/5659.html https://www.runoob.com/python3/python3-tutorial.html https://www.runoob.com/python/python-tuples.html http://www 阅读全文
posted @ 2021-07-26 09:05 弱水三千12138 编辑
摘要:1. 查找文件夹下所有的文件,并将文件的全路径打印出来 参考: 阅读全文
posted @ 2018-12-22 10:59 弱水三千12138 编辑
摘要:下面进入Python的面向对象:对象的魔力:多态:---可以对不同类的对象使用同样的操作封装:---对外部隐藏对象内部的工作方式继承:---以普通的类为基础建立专门的类对象(1)多态:isinstance(...) isinstance(object, class-or-type-or-tup... 阅读全文
posted @ 2015-08-08 15:55 弱水三千12138 编辑
摘要:(1)计算裴波那契数列:1 fbis=[0,1]2 num=int(input("please input the number"))3 for i in range(num-2):4 fbis.append(fbis[-2]+fbis[-1])5 print(fbis) 6.3 ... 阅读全文
posted @ 2015-08-08 09:49 弱水三千12138 编辑
摘要:5.1 print和import的更多信息1. print()3.0之后print不再是语句,而是函数, >>> print('udg',12,13) udg 12 13 >>> name='yanliang' >>> print(name) yanliang2. import 把某件事当做... 阅读全文
posted @ 2015-08-06 19:29 弱水三千12138 编辑
摘要:字典 字典是Python唯一内建的数学映射类型,字典中的值没有特殊的顺序,键可以是数字,字符串,甚至是元组字典的创建: 字典由键值对构成,字典中键是唯一的,而值不唯一。>>> a_map={"a":1,"b":2,"c":2} >>> a_map["a"] dict函数来创建字典: >... 阅读全文
posted @ 2015-08-02 11:05 弱水三千12138 编辑
摘要:字符串是不可修改的,标准序列操作(索引,分片,判断成员资格,求长度,取最大值最小值)对字符串都是有效的。 格式化字符串,类似于C语言的输出是的感觉。>>> format="hello %s %s are you ok?">>> value=("yanliang","24")>>> pri... 阅读全文
posted @ 2015-08-02 09:43 弱水三千12138 编辑
摘要:python shell 里重复上一次的命令:Alt+p2.3 列表:Python的苦力 (1)list函数 (2)列表赋值,不蹦蹦为一个元素不存在的位置赋值 (3)删除元素,del name[1] (4)分片赋值,name[2:]=list('ar') 列表方法:对象.方法(参... 阅读全文
posted @ 2015-08-02 09:00 弱水三千12138 编辑
摘要:1.8 函数 pow(x,y) x^y abs(x) 取数的绝对值 round(x) 会把浮点数四舍五入为最接近的整数 floor(x) 向下取整的函数,但是需要先import math模块1.9 模块 用import导入模块来扩展Python的功能 (1)im... 阅读全文
posted @ 2015-08-01 09:01 弱水三千12138 编辑