返回顶部
扶摇直上九万里,展翅高飞岂可待。
摘要: # -*- coding: utf-8 -*-# 回参函数def test01(): return 0# 以元组返回参数def test02(): return 1, [1, 2, 3, 4, 5], {"name": "liyuzhoupan"}# 有参函数def test03(x, y): pr 阅读全文
posted @ 2022-08-19 14:15 鲤鱼洲畔 阅读(19) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import sys, time# 读文件:一次性读取所有内容#r=readf = open("singe.txt", 'r', encoding="utf-8").read()print(f)# 写文件,覆盖原来的文件# w=writef1 = ope 阅读全文
posted @ 2022-08-18 17:09 鲤鱼洲畔 阅读(28) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# 列表的特性:1,去重;2.关系测试list1 = [1, 4, 6, 8, 7, 8, 9]# 集合去重list2 = set(list1)print(list2)list4 = [1, 3, 5, 7, 9, 11]list3 = set(list 阅读全文
posted @ 2022-08-17 11:01 鲤鱼洲畔 阅读(24) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import os'''用户入口:1. 商品信息存在文件里2. 已购商品,余额记录商家入口1. 可以添加商品,修改商品价格商品信息:commdList.txt华为手机,8888iphon, 2222bike, 8888用户信息:userinfo.txtL 阅读全文
posted @ 2022-08-16 15:37 鲤鱼洲畔 阅读(58) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-dict1 = {"name": "liyuzhoupan", "age": "22", "level": "3"}dict2 = {"name": "LiYuZhou", "age": "32", "level": "6", "students": T 阅读全文
posted @ 2022-08-15 15:32 鲤鱼洲畔 阅读(45) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import sys,timestr1 = "my name is liyuzhoupan"# 首字母大写print(str1.capitalize())# 统计字符串中的字符出现的次数print(str1.count("n"))# 自动补齐多少位,不够 阅读全文
posted @ 2022-08-15 15:01 鲤鱼洲畔 阅读(55) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-'''1.启动程序后让用户输入消费额,然后打印商品列表'2.允许用户根据商品编码购买商品3.用户选择商品后,检测余额是否够,够则直接扣款,不够就提醒4.可以随时退出,退出时,打印已购买的商品和余额'''# 定义商品列表global commodListc 阅读全文
posted @ 2022-08-12 19:19 鲤鱼洲畔 阅读(33) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-import copy# 浅copy# 使用场景,比如A,B夫妻共有一个银行账户,存取马宁的数据username = ["name", ["saving", 1000]]zhangsan = copy.copy(username)zhangfuren = 阅读全文
posted @ 2022-08-12 15:54 鲤鱼洲畔 阅读(16) 评论(0) 推荐(0) 编辑
摘要: # -*- coding: utf-8 -*-# 列表操作names = ["LiSi", "ZhangSan", "WangWu"]print(names[:])# 增names.append("MaZi")print(names)# 位置增names.insert(1, "ZhaoSi")pri 阅读全文
posted @ 2022-08-12 15:38 鲤鱼洲畔 阅读(26) 评论(0) 推荐(0) 编辑
摘要: # -*-coding: utf-8 -*-name = 'liyuzhoupan'password = '123'def login_test(): count = 0 while count < 3: _name = input("please input your name:\n") _pas 阅读全文
posted @ 2022-08-11 10:35 鲤鱼洲畔 阅读(21) 评论(0) 推荐(0) 编辑