Python errors (beginner)?

Hello,

I'm using a "return statement" in this program, but unfortunately, it doesn't print anything to the terminal when the program starts. Of course, printing is the clearest way to do this, but I want to save this value (see image).

Should I add a "print statement" below the "return statement" to make it work?

As the title suggests, I'm new to Python. Your answer is greatly appreciated.

Thanks in advance!

(1 votes)
Loading...

Similar Posts

Subscribe
Notify of
1 Answer
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Schachpapa
1 year ago

myMath(5,4) performs your method. If you don’t do anything with it, the result will simply be forgotten.

You could save the result in a variable, e.g. x, and then work on it:

x = myMath(5,4)
print(x)