On 2014-10-23 01:02, Seymore4Head wrote:
On Thu, 23 Oct 2014 00:44:01 +0100, Mark Lawrence
<breamore...@yahoo.co.uk> wrote:

On 23/10/2014 00:26, Seymore4Head wrote:
On Wed, 22 Oct 2014 23:55:57 +0100, Mark Lawrence
<breamore...@yahoo.co.uk> wrote:

On 22/10/2014 23:30, Seymore4Head wrote:
On Wed, 22 Oct 2014 16:30:37 -0400, Seymore4Head
<Seymore4Head@Hotmail.invalid> wrote:

One more question.
if y in str(range(10)
Why doesn't that work.

Invalid syntax, it should obviously be:-

if y in str(range(10)):

OTOH if you've simply mistyped above what did you expect to happen and
what actually happened?  Give us the actual code that you ran and the
full traceback.

I don't get an error.  It just doesn't print the numbers correctly.
http://imgur.com/a/2loQV
You can click on the images and make them larger.
Thanks


I suggest you try str(range(10)) from the interactive prompt and see
exactly what you get, as it's nothing like what you expect :)

I see that now.  So there may not be a short hand solution.

range(10) will yield the integers 0-9.

You can iterate over them, turning each into a string, and then join
them together:

''.join(str(n) for n in range(10))

--
https://mail.python.org/mailman/listinfo/python-list

Reply via email to