- 3
В чем отличия print и return?
3 Respostas
+ 7
печать печать и возвращение возвращение и бог Путин.
print outputs a message, return is kinda like giving a value to a variable from a function
+ 6
nope they're not the same. return can affect the outcome, while print won't
0
okay, just,
x = 5
print(x)
and
return(x)
it's same?