代码示例:(标识:python_function_return)
python_function_return.py
def my_function(x):
  return 5 * x

print(my_function(3))
print(my_function(5))
print(my_function(9))
运行结果: