Add test.py with multiply function

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
user007
2026-04-08 14:10:50 +08:00
commit 837d23c78c

10
test.py Normal file
View File

@@ -0,0 +1,10 @@
def multiply(a, b):
"""
计算两个数字的乘积并返回结果
"""
return a * b
if __name__ == "__main__":
# 测试函数
result = multiply(3, 4)
print(f"3 * 4 = {result}")