2017年8月7日

python类的定义和使用

摘要: 类的定义: 类是用来描述具有相同的属性和方法的对象的集合。它定义了该集合中的每个对象所共有的属性和方法。对象时类的实例。 二、Python创建类: 使用class语句来创建一个新类,class之后为类的名称并以冒号结尾,类的组成包括成员变量和成员函数。 三、Python构造函数和析构函数: 1.__ 阅读全文

posted @ 2017-08-07 16:15 sunshine_zhf 阅读(2228) 评论(0) 推荐(0) 编辑

python3之所filter()返回的结果是个迭代器,需要通过list()转换成列表打印

摘要: 使用filter和lambda,找出1-100内的所有偶数: a = filter(lambda x:x%2==0,range(1,101))) print(list(a)) 阅读全文

posted @ 2017-08-07 14:35 sunshine_zhf 阅读(838) 评论(0) 推荐(0) 编辑

python使用字典实现switch功能

摘要: def result(): a = float(input("Please input a:")) while 1: ope = input("please input ope:") b = float(input("Please input b:")) result = { "+":a + b, 阅读全文

posted @ 2017-08-07 10:50 sunshine_zhf 阅读(161) 评论(0) 推荐(0) 编辑

导航