python的类和函数
2022/1/23 22:07:07
本文主要是介绍python的类和函数,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
最近需要用python,居然有点忘了类和函数怎么定义了,所以记录一下
def f(a,b): return a,b,a+b ''' s=f(1,2)#小括号表示元组 lst=[] for i in s: lst.append(i) print(lst) ''' class book: count=0 def __init__(self,number,salary): self.number=number self.salary=salary print("欢迎进入") book.count+=1 def show(self): print("数目:"+str(self.number)+" 价格:"+str(self.salary)) print("第"+str(book.count)+"位用户") lst=[] def show(): print("1 增加用户") print("2 显示数据") print("3 退出程序") count=0 def fun(): print("一共有"+str(count)+"个人") a=int(input("请输入查找谁的数据")) lst[a-1].show() while(1): show() a=int(input("请输入数字")) if(a==1): salary=input("请输入数量") number=input("请输入价格") lst.append(book(salary,number)) count+=1 elif(a==2): fun() elif(a==3): break
这篇关于python的类和函数的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2025-01-03用FastAPI掌握Python异步IO:轻松实现高并发网络请求处理
- 2025-01-02封装学习:Python面向对象编程基础教程
- 2024-12-28Python编程基础教程
- 2024-12-27Python编程入门指南
- 2024-12-27Python编程基础
- 2024-12-27Python编程基础教程
- 2024-12-27Python编程基础指南
- 2024-12-24Python编程入门指南
- 2024-12-24Python编程基础入门
- 2024-12-24Python编程基础:变量与数据类型