Print and return are very unrelated. Might be you are new to coding.
In short "return" is used to return value(s)/control from a function being called.
"Print" outputs the parameters passed to a specified logger, usually console screen.
You might want to look at:
https://docs.python.org/2/tutorial/controlflow.html
Also:
Why would you use the return statement in Python?