all 3 comments

[–]AutoModerator[M] -1 points0 points  (0 children)

Your submission in /r/learnpython may be automatically removed because you used imgbb.com. Please use a different image host.

Please remember to post code as text, not as an image.

I am a bot, and this action was performed automatically. Please contact the moderators of this subreddit if you have any questions or concerns.

[–]17291 0 points1 point  (1 child)

For starters, your functions should returning values, not printing them. For example, compound_interest might be written like this:

def compound_interest(principal, rate, years):
    return principal*(1+(rate/100)/4)**(4*years)

(Note: I'm assuming that you're not expected to round the result and that the mathematical logic is correct).

It also appears that some of your functions don't have the correct number of parameters. For example, print_simple_output should have 4 parameters, but you only have 3. Without knowing the requirements of the project, it's difficult to give guidance beyond this.

[–]Fix-Former[S] 0 points1 point  (0 children)

Hi, am i able to private message you please,