How print and laber command differ
Answers
Answered by
2
Well, printing is just one line command, where as when you use return, you are returning the whole code to it's process. You will learn more, but you can print anything...
print "12"
print (variable_name)
Where you execute this straight away
return "12" is where you bring the code back to it's MAIN process
Hope it helped!
print "12"
print (variable_name)
Where you execute this straight away
return "12" is where you bring the code back to it's MAIN process
Hope it helped!
Similar questions