Skip to content

Python

print输出

python
a = 10
b = 20
print(f"a - b={a - b}, a + b={a + b}")

Released under the MIT License.