Final answer:
To use the random function in Python, the correct statement is 'from random import *', enabling access to all functions in the random module without needing to prefix them.
Step-by-step explanation:
To make the random function available in Python, one would use the statement C) from random import *. This statement imports all the functions and variables available in the random module, so you can use the random function without having to prefix it with the module name.
Option A) import math is incorrect because the math module does not contain the random function. Option B) include random is not a correct syntax in Python. Option D) randomize is also not a valid Python statement for importing the random function. Therefore, the correct choice is C).