Как вы функционируете в Python

def function(x):
  # write code here 
  print(x);

function(5);

#output: 5
Shiny Salamander