Re: [Tutor] ArcGis 10 support materials for Python

2011-01-24 Thread Vern Ceder
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 ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options

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

2011-01-13 Thread Vern Ceder
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 ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options

Re: [Tutor] subclass not inheriting attributes?

2011-01-03 Thread Vern Ceder
...@gmail.com; http://www.facebook.com/mehgcap ___ 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

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

2010-12-02 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

Re: [Tutor] new turtle module

2010-10-07 Thread Vern Ceder
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 versions. Cheers, Vern Ceder Thank you ! -- roberto

Re: [Tutor] Scribbler Robot

2010-09-17 Thread Vern Ceder
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 vce

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

2010-06-26 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] 2to3 conversion

2010-06-09 Thread Vern Ceder
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 Quick

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

2010-05-18 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] 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

Re: [Tutor] Problem with turtle

2010-03-11 Thread Vern Ceder
Ooops... missed a closing parenthese... that should be: for n in range(10): square and triange code here... 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

Re: [Tutor] PyCon anyone?

2010-02-16 Thread Vern Ceder
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/openspace/edu-sig/ Cheers, Vern Ceder

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 http://us.pycon.org

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

2009-10-05 Thread Vern Ceder
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. Moose - Vern Ceder, Director

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

2009-10-05 Thread Vern Ceder
- 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 - Tutor@python.org To unsubscribe or change

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

2009-08-25 Thread Vern Ceder
://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

Re: [Tutor] print problem python

2009-03-06 Thread Vern Ceder
-- 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 - Tutor

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

2009-02-27 Thread Vern Ceder
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 question in IDLE

2009-01-30 Thread Vern Ceder
/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 ___ Tutor

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 tutorial

[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 Ceder

Re: [Tutor] eval and floating point

2009-01-14 Thread Vern Ceder
! -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 - Tutor@python.org http://mail.python.org

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

2009-01-13 Thread Vern Ceder
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 Canterbury School, 3210 Smith Road, Ft Wayne, IN 46804 vce

Re: [Tutor] 2to3 Help?

2009-01-12 Thread Vern Ceder
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, Director of Technology