📜  你如何在 python 代码示例中使用函数

📅  最后修改于: 2022-03-11 14:45:26.019000             🧑  作者: Mango

代码示例1
def function(x):
  # write code here 
  print(x);

function(5);

#output: 5