09-20-周六_13-43-26

This commit is contained in:
2025-09-20 13:43:27 +08:00
parent ef0ed27b9e
commit df099c7f1a

View File

@@ -70,7 +70,7 @@ def timer(func):
return inner
@timer
def func1(*args,**kwargs):
print(args,kwargs)
print(*args,**kwargs)
func1('hello world','abc',123,432)
```