使函数返回值

  1. def my_function(x):
  2. return 5 * x
  3.  
  4. print(my_function(3))
  5. print(my_function(5))
  6. print(my_function(9))