Re: [Tutor] drawing a face

2005-09-30 Thread Harper, Gina
Looks like you misspelled circle... -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, September 30, 2005 12:19 PM To: tutor@python.org Subject: [Tutor] drawing a face Hello I am trying to draw a basic face with eyes, nose, and a mouth. I keep receiving

Re: [Tutor] Using join instead of string.joinfield

2005-08-23 Thread Harper, Gina
Easy. Suppose you want to join a list of words with hyphens. >>> a_list = ['this', 'is', 'a', 'list', 'of', 'words'] >>> sep_char = '-' >>> print sep_char.join(a_list) this-is-a-list-of-words >>> *g* -Original Message- From: Bernard Lebel [mailto:[EMAIL PROTECTED] Sent: Tuesday, August