product:str = 'apple'
cost:float = 1.39
print(f'This {product} costs ${cost:.2f}.')
?print("This {} costs ${:.2f}.".format(product,cost))
?print('I\'m enjoying Python.')
?val: float = 1000/3*2
, what is the number returned by this code: print(1000/3*2:.2f)
?msg: str
msg += "hello"
print(msg)