Python - 'module' object has no attribute 'randrange'

python

Solution

You've a third file, random.py. Rename it.

Problem

I've 2 files a.py and b.py a.py ``` from b import * #and then some lines of code ``` b.py ``` import random red = random.randrange(1,257) / 256.0 #and then some lines of code ``` While running I get an error saying `'module' object has no attribute 'randrange'`. I dont know why this error is popping up because when I test it in some dummy file trying to print `red = random.randrange(1,257) / 256.0` , it works. But not in this case. Why is this error popping up?

Original source