Home
/
03
/
024
prog3_14.py
x = -273.15 print("x =", x) print("-x =", -x) print("+x =", +x) # プログラム3-14(単項演算子 - と +)