New submission from John Henning:
When attempting to use range(I, j) command in Windows 10 command prompt, the
latest version of Python would simply echo what was typed. See below:
>>> range(7)
range(0, 7)
>>> range(0, 9)
range(0, 9)
>>> ran
John Henning added the comment:
Right about the command prompt! My bad. However, the new language you
provided gives me the following:
>>> list(range(9))
Traceback (most recent call last):
File "", line 1, in
TypeError: 'list' object is not callable
>>&
John Henning added the comment:
Ha! Thanks! Restarted python and now that works. Sorry for the trouble!
Trying to teach myself python working through the python tutorial and hit this
problem.
--
___
Python tracker
<http://bugs.python.