What if we have a module that contains two functions and we import only one of them, will the other work?For instance:
file test.py
def a(x):print(x)
def b():a(12)
At the interpreter:
from test import b
b()
It prints 12.How is this possible?Please pardon my bad formatting that's my first question :).