Files
python-tests/math.py
2025-08-30 14:55:21 +08:00

11 lines
436 B
Python
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/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