Answer:
print("You owe $", moneyDue, sep="")
Step-by-step explanation:
By default, Python3 will put a space between two strings like this. If you specify that the separator is an empty string (sep="") then it will not separate the two strings and the space will go away.