From 386df4af105957e934fee6780cfbf6a15edd27f4 Mon Sep 17 00:00:00 2001 From: zcj Date: Sat, 21 Mar 2026 15:15:59 +0800 Subject: [PATCH] =?UTF-8?q?[Zcj]=20Feature:=20=E5=AE=9E=E7=8E=B0test.py?= =?UTF-8?q?=E4=B9=98=E6=B3=95=E8=AE=A1=E7=AE=97=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- test.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 test.py diff --git a/test.py b/test.py new file mode 100644 index 0000000..3395137 --- /dev/null +++ b/test.py @@ -0,0 +1,10 @@ +def multiply(a, b): + """计算两个数字的乘积并返回结果""" + return a * b + +if __name__ == "__main__": + # 测试函数 + result = multiply(3, 4) + print(f"3 * 4 = {result}") + +# 末尾留一个空行(满足编码规范) \ No newline at end of file