Re: [Tutor] Removing characters in a string using format()

2011-07-21 Thread Ryan Porter
Thanks for help, James! It works perfectly. Ryan On 7/21/2011 11:13 AM, James Reynolds wrote: Since you're using python 3, you can just use a star to unpack the list like so: >>> print(*x) a b >>> print(*x, sep = ', ') a, b You can use sep to change the separator if you want the commas still

Re: [Tutor] Removing characters in a string using format()

2011-07-21 Thread Prasad, Ramit
-Original Message- From: tutor-bounces+ramit.prasad=jpmchase@python.org [mailto:tutor-bounces+ramit.prasad=jpmchase@python.org] On Behalf Of Ryan Porter Sent: Thursday, July 21, 2011 12:54 PM To: tutor@python.org Subject: [Tutor] Removing characters in a string using format() Hi

Re: [Tutor] Removing characters in a string using format()

2011-07-21 Thread James Reynolds
Since you're using python 3, you can just use a star to unpack the list like so: >>> print(*x) a b >>> print(*x, sep = ', ') a, b You can use sep to change the separator if you want the commas still. On Thu, Jul 21, 2011 at 1:53 PM, Ryan Porter wrote: > Hi there, > > In one part of a program

Re: [Tutor] Removing characters in a string using format()

2011-07-21 Thread Dave Angel
On 07/21/2011 01:53 PM, Ryan Porter wrote: Hi there, In one part of a program I'm writing, I want a list to be printed to the string. Here's my code: # Begin snippet listString = input('Please enter a single item: >').strip(); /print(); itemList.append(listString); / /... /

[Tutor] Removing characters in a string using format()

2011-07-21 Thread Ryan Porter
Hi there, In one part of a program I'm writing, I want a list to be printed to the string. Here's my code: # Begin snippet listString = input('Please enter a single item: >').strip(); /print(); itemList.append(listString); / /... / /print('And here it is in alphabetical orde