I have this program that I am having trouble writing the correct code for the functions in it. It uses functions to create a monthly budget analyzation. As you can see, some of the coding is empty. I do not know where to go from here.
def DescribeProgram():
print("""\
This program uses a for loop to monitor your budget.
The program will prompt you to enter your budget, and amount spent
for a certain month and calculate if your were under or over budget.
You will have the option of choosing how many months you would like to
monitor.\n""")
GetMonths():
Months = float(input("Enter the number of months you want to analyze")
return Months
GetMonthBudgetandSpent(month):
Mobudget=
MoSpent=
AnalyzeBudget(months):
for month in range(1,months+1):
print("\nMonth",month,":")
print("=======")
MoBudget,MoSpent = GetMonthBudgetandSpent(month)
def main():
DescribeProgram()
months = GetMonths()
AnalyzeBudget(months)
Please help me with this layout I have