I am using Python 2.7.3 and IPython 0.12.1 and while in terminal I initialized a variable named range. I don't won't to restart the session and I want to use the range function. I tried to set the variable to None, but then I get the following error when I try to call range():
range = [1,2,3]
range = None
range(0,3000,5)
TypeError: 'NoneType' object is not callable