[Zcj] Feature: 实现test.py乘法计算功能

This commit is contained in:
zcj
2026-03-21 15:15:59 +08:00
parent 458c7a3a75
commit 386df4af10

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}")
# 末尾留一个空行(满足编码规范)