return គឺជា statement ត្រូវប្រើប្រាស់នៅក្នុង function សំរាប់បញ្ចប់ការអនុវត្ត block នៃ statement នៅក្នុង function និងបញ្ជូនវត្ថុណាមួយ ទៅកន្លែងដែល function ត្រូវបាន call ។ ពិនិត្យកម្មវិធីខាងក្រោមនេះ៖
def get_profit(sale, buy): profit = sale - buy return profit fee = get_profit(1000, 900) print('The object returned is', fee)
The object returned is 100
មួយវិញទៀត គ្រប់ function ទាំងអស់ដែលគ្មាន statement return នៅក្នុងនោះ បញ្ជូនវត្ថុ None ទៅកាន់កន្លែងដែល function ត្រូវបាន call ។
def get_profit(sale, buy): profit = sale - buy obj = get_profit(1000, 900) print('The object returned is', obj)
The object returned is None