-
8/21 python基础学习4
第九章 类 类的创建: class Dog: def __init__(self, name, age): # 初始化函数 self.name = name self.age = …
-
Python入门系列(六)一篇学会python函数
函数 函数是只在调用时运行的代码块。 def my_function(): print(“Hello from a function”) my_function() 信息可以作为参…
-
Python入门系列(七)开发常说的“累”与“对象”
类与对象 Python是一种面向对象的编程语言。 要创建类,请使用关键字class class MyClass: x = 5 创建一个名为p1的对象,并打印x的值 p1 = MyC…
-
python print 输出格式化的几种方式
# 对浮点数,保留小数点后几位 print(‘{:0.3f}’.format(50.5 / 220.5)) # print 格式化字符串 num = int(input(‘请输入一…
-
python 时间戳装饰器
点击查看代码 import time from functools import wraps def timer(func): @wraps(func) def inner(*ar…
-
python-%格式化输出
输出 输出使用的是print()函数,作用,将程序中的数据或结果打印到控制台(屏幕) print(‘hello world’) name = ‘…
-
python switch 替换if else
1,python 解释器版本3.10以上可以使用如下 def dar(darling): match darling: case ‘400’: print(400) case ‘4…
-
python wraps装饰器
from functools import wraps def decorator(func): “””this is decorator __doc__””” @wraps(fu…
-
python—re
python—re python的re模块简单使用re.findall, re.compile, re.match和re.search re.findall 这个是最好…
-
python 简单密码校验
# 判断字符串长度是否在8位以上 def check_len(pwd): if len(pwd) >= 8: return True else: return False #…