Рубрики
Без рубрики

Возврат против печати внутри функции

Ссылка https://realypython.com/python-reaturn-Statement/ Def Print_GreeTing (): Печать («Привет, … Теги с Python.

Ссылка https://realypython.com/python-return-statement/

def print_greeting():
    print("Hello, World")


print_greeting()
# outuput : Hello, World


def return_greeting():
    return "Hello, World"

return_greeting()
# output : 

print(return_greeting)
# output :  

print(return_greeting())
# output : Hello, World

Оригинал: “https://dev.to/s_belote_dev/return-vs-print-inside-function-jd9”