For example: shutil is default python module
I have created custom python file called shutil.py and below is the code in that shutil.py file
import shutil
shutil.move('test.py', 'test/test.py')
It returned below error instead of calling python shutil module which was imported in this shutil.py file
AttributeError: 'module' object has no attribute 'move'
Please help me in this
Thanks