print("The result of the computation is:", (4*(7+2)**2)/(6+5), 42)
print("Rounding is weird! 0.3-0.2 is", 0.3-0.2)
print("Hello, world!")
The result of the computation is: 29.454545454545453 42 Rounding is weird! 0.3-0.2 is 0.09999999999999998 Hello, world!