I\'m new to Python and programming in general (a couple of weeks at most).
Concerning Python and using modules, I realise that functions can imported using fro
fro
You gave the solution yourself: from a import * will work just fine. Python does not differentiate between functions and variables in this respect.
from a import *
>>> from a import * >>> if name == "Michael" and age == 15: ... print('Simple!') ... Simple!