Try this exercise. Fill in the missing part by typing it in.
What will be printed by the variable result, in the following code block in Python?
1function div(a, b) {
2    let c = b / a;
3    return c;
4}
5
6let result = div(15, 5);
7console.log(result);Write the missing line below.


