Hi!
If I have two files .py such as
m.py
from c import *
...
x=c()
...
os.any_method ...
...
c.py
class c:
def __init__(self, ...):
...
os.any_method ...
...
...
both using os module where should I put the "import os"? In both files?
Thanks
Paulo
If I have two files .py such as
m.py
from c import *
...
x=c()
...
os.any_method ...
...
c.py
class c:
def __init__(self, ...):
...
os.any_method ...
...
...
both using os module where should I put the "import os"? In both files?
Thanks
Paulo
Comment