Como você funciona no python

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

function(5);

#output: 5
Shiny Salamander