3 Answers
+ 4
In python, there's no requirement to use function return. Your function can just print the output to the screen. However, it is usually a good practice to return something from the function (so that it's easier to catch bugs) and then you can use it or discard it depending on your needs.
+ 3
Without a return statement, the function returns None.
+ 1
Abir Hasan thank you so much