William126

2017年6月23日

Python实战之dict简单练习

摘要: ['__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', '__init__',  阅读全文

posted @ 2017-06-23 17:18 William126 阅读(212) 评论(0) 推荐(0) 编辑

Python实战之字符串的详细简单练习

摘要: ['__add__', '__class__', '__contains__', '__delattr__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__getnewargs__', '__gt__', '__hash__', & 阅读全文

posted @ 2017-06-23 16:23 William126 阅读(200) 评论(0) 推荐(0) 编辑

Python实战之实现简单的购物车系统

摘要: #!usr/bin/env Python3 # -*-coding:utf-8-*- # 程序:购物车程序 # # 需求: # # 启动程序后,让用户输入工资,然后打印商品列表 # 允许用户根据商品编号购买商品 # 用户选择商品后,检测余额是否够,够就直接扣款,不够就提醒 # 可随时退出,退出时,打印已购买商品和余额 __author__="William" ... 阅读全文

posted @ 2017-06-23 15:02 William126 阅读(381) 评论(0) 推荐(0) 编辑

Python实战之列表简单练习

摘要: ['__add__', '__class__', '__contains__', '__delattr__', '__delitem__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__getitem__', '__gt__', '__hash__', ' 阅读全文

posted @ 2017-06-23 10:54 William126 阅读(219) 评论(0) 推荐(0) 编辑

Python实战之用类的静态方法实现登录验证

摘要: #!usr/bin/env Python3 # -*-coding:utf-8-*- __author__="William" #define a class,just to learn to use class. class Login(object): #those variable just use to be a flag. count = 3 Flag = 1... 阅读全文

posted @ 2017-06-23 10:32 William126 阅读(227) 评论(0) 推荐(0) 编辑

导航