Lesson 9 Classes

I’m a little stuck on these classes. When writing a function in a class, is there no need for a return statement like we learned in the previous lesson?

hello, a function may or may not have a return value it just depends on what you want to do and how you design it

usually functions that dont have a return value are used to print or change label text on the screen so you can see the change immediately
while return functions are usually computed values or values that you need to get from something

Thank you so much for the quick response and feedback.