test commit

This commit is contained in:
2026-03-21 15:42:29 +08:00
parent 6c931e1d9a
commit 349cf5b396

18
text.py Normal file
View File

@@ -0,0 +1,18 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
def multiply(a, b):
"""返回两个数的乘积"""
return a * b
if __name__ == "__main__":
# 定义两个变量
x = 5
y = 3
# 计算乘积
result = multiply(x, y)
# 输出结果
print(f"变量 x = {x}, y = {y}")
print(f"乘积 x * y = {result}")