Naming convention of modules

Is there any rule for naming of modules? Can I name my file as pandas.py?
If I call this file in my main.py file like:
import calculator
import pandas

then, will it override the original inbuilt pandas library or it will throw error?