On Aug 30, 2012, at 8:15 PM, tutor-requ...@python.org wrote:

> Message: 6
> Date: Fri, 31 Aug 2012 00:15:41 +0000
> From: Ashley Fowler <afowl...@broncos.uncfsu.edu>
> To: "tutor@python.org" <tutor@python.org>
> Subject: [Tutor] Printing a list as a column
> Message-ID:
>       
> <6962c976ae76ac4298cbf6fd6d0c63561f37c...@bl2prd0710mb363.namprd07.prod.outlook.com>
>       
> Content-Type: text/plain; charset="iso-8859-1"
> 
> Does anyone know how to print a list in a form of a column instead of a row?

Please give an example of what you mean here. For example, you might want to 
see:

['a',
 'b',
 'c',
 'd',
 'e']

My guess is that what you want is for the list ['a', 'b', 'c', 'd', 'e'] to 
print out as:

a
b
c
d
e

Yes? Are you familiar with the join method of strings? Try it out. If you have 
trouble, let us know :>)

Take care,
Don
_______________________________________________
Tutor maillist  -  Tutor@python.org
To unsubscribe or change subscription options:
http://mail.python.org/mailman/listinfo/tutor

Reply via email to