i.e the first module I try to import does not work but the others work. I know it's a problem with the module in the first position because I switched them and each time, when in the first position I get an AttributeError saying that the 'module' object has no attribute ' '.
Here's an example of how I import them:
from os import name, system #Note, this import comes before the other three below.
import product as p #The module in this position returns an attribute error
import rewards as r
import sale as s
I also tried importing them this way but the module first imported still does not work:
import product as p, rewards as r, sale as s