Can u replace return with print | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can u replace return with print

Return function in python

12th May 2020, 7:01 PM
Kody
2 Answers
0
Return statement, returns value, which may not always used only for printing, it may used in calculation also... So there replacing print will lead to wrong results... But depends on your logic, depends on your code, you may thinking like: Ex: def a() : return "hello" print(a()) Can be written as same as : def a() : print("Hello") a() But they are not for same purpose so use return when need return, use print when you need print.
12th May 2020, 7:15 PM
Jayakrishna 🇮🇳
+ 2
Could you please come up with an example. A code where you would like to replace return with print.
12th May 2020, 7:10 PM
Avinesh
Avinesh - avatar