On Fri, 24 Oct 2014 10:38:31 -0400, Seymore4Head wrote:

> I tried list(range(10)  

This is missing a ")"

It probably sat there waiting for you to finish the line.

list(range(10))

You have two "(" in the line, you need two ")" to match them. 

> I thought that would work in Python 3.  It
> didn't.

It does if you enter it properly.

also try:

str(list(range(10))) 

Note that that has three "(" and three ")" on the line.

-- 
Denis McMahon, denismfmcma...@gmail.com
-- 
https://mail.python.org/mailman/listinfo/python-list

Reply via email to