Write the code to call a function named send_variable and that expects a single int parameter. Suppose a variable called x refers to an int. Pass this variable as an argument to send_variable .

LANGUAGE:  PYTHON

CHALLENGE:

Write the code to call a function named send_variable and that expects a single int parameter.

Suppose a variable called x refers to an int.
Pass this variable as an argument to send_variable.

SOLUTION:


send_variable(x);