Re: [Tutor] PyCon anyone?

2010-02-16 Thread Vern Ceder
m not a very regular contributor here, but we'd love have you (and anyone else who's on the tutor list) join the edu-sig group for dinner and open space, if you're so inclined... Our open space page is at http://us.pycon.org/2010/open

Re: [Tutor] PyCon anyone?

2010-02-16 Thread Vern Ceder
Kent Johnson wrote: On Tue, Feb 16, 2010 at 10:09 AM, Vern Ceder I'm not a very regular contributor here, but we'd love have you (and anyone else who's on the tutor list) join the edu-sig group for dinner and open space, if you're so inclined... Our open space page is at

Re: [Tutor] Bowing out

2010-03-03 Thread Vern Ceder
here. So long and keep coding! Kent ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. Moose ----- Vern Ced

Re: [Tutor] Problem with turtle

2010-03-11 Thread Vern Ceder
___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director of Technology Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804 v

Re: [Tutor] Problem with turtle

2010-03-11 Thread Vern Ceder
Ooops... missed a closing parenthese... that should be: for n in range(10): Vern Ceder wrote: It looks like the indentation of n = n + 1 is wrong - it will be outside of the while loop and so n will never increment and the loop will never end. Instead of a while loop I would suggest a

Re: [Tutor] what is wrong with this syntax?

2010-05-18 Thread Vern Ceder
Enterprise Application Development ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. Moose -

Re: [Tutor] 2to3 conversion

2010-06-09 Thread Vern Ceder
ption options: http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director of Technology Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804 vce...@canterburyschool.org; 260-436-0746; FAX: 260-436-5137 The

Re: [Tutor] Creating A Simple Blog System Using Python Programming

2010-06-26 Thread Vern Ceder
m/NMN/go/157639755/direct/01/> ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. Moose -----

Re: [Tutor] Scribbler Robot

2010-09-17 Thread Vern Ceder
__ > Tutor maillist - Tutor@python.org > To unsubscribe or change subscription options: > http://mail.python.org/mailman/listinfo/tutor > > -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director

Re: [Tutor] new turtle module

2010-10-07 Thread Vern Ceder
c files in my current > '/usr/lib/python2.5/lib-tk/' > directory with the ones holding the same names unzipped from > turtleDemo folder 'TurtleDemo-Python2.x' by author Gregor Lindl ? > > Yes, that should work with Python 2.5, but probably not with any earlier vers

Re: [Tutor] Convert a string of numbers to a list

2009-02-27 Thread Vern Ceder
epresentation of a list), you COULD just use eval(): >>> x = '[335, 180, 201, 241, 199]\r\n' >>> y = eval(x.strip()) >>> print y [335, 180, 201, 241, 199] >>> Regards, Vern Ceder ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] print problem python

2009-03-06 Thread Vern Ceder
r -- This time for sure! -Bullwinkle J. Moose ----- Vern Ceder, Director of Technology Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804 vce...@canterburyschool.org; 260-436-0746; FAX: 260-436-5137 ___ Tutor maillist - T

Re: [Tutor] Printing Problem python 3

2009-04-29 Thread Vern Ceder
To run a Python file as a script, you'd need to do: [da...@arch64 Python]$ python3 test.py (or just ./test.py if it's executable and the interpreter is set using '#!/usr/bin/python3') When I do that, it works for me just fine without doubling the '{' Cheers, Vern

Re: [Tutor] Trouble with a Recipe ...

2009-08-25 Thread Vern Ceder
+ headers.get("Bcc", []) TypeError: cannot concatenate 'str' and 'list' objects Sorry, but I according to the recipe I don't need a Bcc. Sorry, again, for such a simple question! Cheers, Garry ___ Tutor maillist

Re: [Tutor] if n == 0 vs if not n

2009-10-05 Thread Vern Ceder
ich would be the most pythonic way if writing these checks? Thanks Sander ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. M

Re: [Tutor] if n == 0 vs if not n

2009-10-05 Thread Vern Ceder
"if not n == 0", I would think. Cheers, Vern -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director of Technology Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804 vce...@canterburyschool.org; 260-436-0746; FAX: 260-436-5137 _

Re: [Tutor] 2to3 Help?

2009-01-12 Thread Vern Ceder
ferences Python 3 as the interpreter on the she-bang line, though, so that may not be the problem. Just some guesses... I haven't got around to installing Python 3 yet. Alan G. Cheers, Vern Ceder -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Di

Re: [Tutor] python3.0 and tkinter on ubuntu 8.10

2009-01-13 Thread Vern Ceder
mportError: No module named _tkinter >>> Any idea how this can be solved on Ubuntu 8.10. I don't have this problem with the default Python installation (2.5.2) Thank you -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director of Technology

[Tutor] Python3.0 and Tkinter on ubuntu 8.10 HOWTO

2009-01-14 Thread Vern Ceder
Since there was some interest in the question of how to get a full Python 3.0, including Tkinter and IDLE, compiled on Ubuntu Intrepid 8.10, I've written up what I've done and posted it at http://learnpython.wordpress.com/2009/01/14/installing-python-30-on-ubuntu/ Cheers, Vern Cede

Re: [Tutor] eval and floating point

2009-01-14 Thread Vern Ceder
port division >>> eval("3/2") 1.5 >>> eval("3//2") 1 >>> Cheers, Vern -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director of Technology Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804 vce...@

Re: [Tutor] Best Python3000 Tutorial for Beginner

2009-01-18 Thread Vern Ceder
Swaroop's Byte of Python has both 2.x and 3.x versions: http://www.swaroopch.com/notes/Python_en:Table_of_Contents Cheers, Vern Ceder Ian Egland wrote: Hello all, I just joined this mailing list. I am a beginner to programming in general and would really appreciate a tutoria

Re: [Tutor] Print question in IDLE

2009-01-30 Thread Vern Ceder
___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor -- This time for sure! -Bullwinkle J. Moose - Vern Ceder, Director of Technology Canterbury School, 3210 Smith

Re: [Tutor] Trying To Debug Code That Runs Arbitrary Function

2010-12-02 Thread Vern Ceder
l in error, please notify the sender immediately > and then delete it. If you are not the intended recipient, you must not > keep, use, disclose, copy or distribute this e-mail without the author's > prior permission. The views expressed in this e-mail message do not &

Re: [Tutor] subclass not inheriting attributes?

2011-01-03 Thread Vern Ceder
e 'l'. > Python 2.7 on win7x64. Thanks. > > -- > Have a great day, > Alex (msg sent from GMail website) > mehg...@gmail.com; http://www.facebook.com/mehgcap > ___ > Tutor maillist - Tutor@python.org > To un

Re: [Tutor] errors in "Python Programming for the Absolute Beginner"??

2011-01-13 Thread Vern Ceder
were back >> > ported or something. I would have expected the same for 2.7.1. >> > >> > --Bill >> >> I'm using Python 2.6.6 and I have a feeling you are not using python >> 2.6.5 with Python3 syntax working. I could be very wrong, but just a >> hunc

Re: [Tutor] ArcGis 10 support materials for Python

2011-01-24 Thread Vern Ceder
Tutor maillist  -  Tutor@python.org > To unsubscribe or change subscription options: > http://mail.python.org/mailman/listinfo/tutor > > -- Vern Ceder vce...@gmail.com, vce...@dogsinmotion.com The Quick Python Book, 2nd Ed - http://bit.ly/bRsWDW __