The recommended way to achieve what I think you want to achieve is to declare a function in importee and call it, for example:
import importee
importee.call_me(4)
and
def call_me(parameter):
print(parameter)
It is preferable to avoid performing any operations in the global area. And especially print()nothing, but I suppose your minimal example does not match your real use case :).
, , , . :
import config
config.param = 4
import importee
+
import config
print(config.param)
+
param = 7
- , , , .