This commit is contained in:
Orangeeee
2026-09-23 21:21:13 +08:00
parent 697a809a77
commit a21f166279
2 changed files with 16 additions and 0 deletions
+2
View File
@@ -1,4 +1,6 @@
# students模块解释
## 组名:江山代有人才秃
## 口号:干就完了
## 项目层:
web框架:FastAPI(自动生成接口)
+14
View File
@@ -0,0 +1,14 @@
def f(f1)
def a(c):
def b(a1):
c = c + a1
return b
@a(d)
def c(a1):
return "hi"
print(c(1))