Hi I want to have my display to be for example, Single room 4 $720.00 But I do not know how to have the dollar sign there without having the error that it doesn't go with a float value.
single_room = int(input("Number of Single room: "))
total_single = 90 * single_room
print(f'{"Single room":<12}{single_room:^3}{"$" + total_single:>9.2f}')
This is an error because string doesn't go along with the float value. Please assist