feat: updates

This commit is contained in:
2025-09-03 23:15:38 +08:00
parent 78325b04cb
commit 6b51ad76aa
2 changed files with 1 additions and 1 deletions

10
math_test.py Normal file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env python3
if __name__ == "__main__":
print(321 + 12) # 加法运算输出333
print(321 - 12) # 减法运算输出309
print(321 * 12) # 乘法运算输出3852
print(321 / 12) # 除法运算输出26.75
print(321 // 12) # 整除运算输出26
print(321 % 12) # 求模运算输出9
print(321 ** 12) # 求幂运算输出1196906950228928915420617322241