Olá! Segue minha resolução. Fico à disposição para quaisquer dicas ou críticas construtivas!
budget = 3000
expenses = float(input("Enter your total monthly expenses (U$): "))
if budget < expenses:
print("Warning! You have exceeded your budget limit")
else:
remaining = budget - expenses
print(f"There were {remaining:.2f} dollars left")