2018年2月8日

函数

摘要: def test(x): y=2*x+1 return y print(test(3) ) def test(): x=3 y=2*x+1 return yprint(test() ) 阅读全文

posted @ 2018-02-08 18:56 python_an 阅读(96) 评论(0) 推荐(0) 编辑

集合的使用

摘要: 集合的特点:1.无序的 2. 不同的元素组成(有去重的功能)3.不可修改 不可变列表 s = frozenset ("hello") #frozenset({'l', 'e', 'h', 'o'}) print(s) 添加 set = {"assd","445",131,("jjsda") } se 阅读全文

posted @ 2018-02-08 12:49 python_an 阅读(138) 评论(0) 推荐(0) 编辑

导航