Re: [Tutor] Ideas for Child's Project

2015-01-07 Thread Stephen Nelson-Smith
Hi Danny, On Tue, Jan 6, 2015 at 10:07 PM, Danny Yoo wrote: > On Tue, Jan 6, 2015 at 1:46 PM, Stephen Nelson-Smith > wrote: > > You might want to look at Bootstrapworld, a curriculum for > middle-school/high-school math using programming and games: > > http://www.bootstrapworld.org/ > > Stu

[Tutor] Error 22

2015-01-07 Thread ishay.yemini
How I fix this error? when I open my python project (.py) it closes immediately. please help. /: Sent from Windows Mail ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listin

Re: [Tutor] Ideas for Child's Project

2015-01-07 Thread Jim Gallaher
Good day Stephen, I have a few recommendations. Make Magazine has a lot of fun projects that use Python programs along with either a Raspberry Pi or an Arduino to create interactive projects. Arduino is more for electronic/programming based projects, but you can, say for example, attach an LED

Re: [Tutor] Error 22

2015-01-07 Thread Mark Lawrence
On 08/01/2015 01:14, ishay.yem...@gmail.com wrote: How I fix this error? when I open my python project (.py) it closes immediately. please help. /: Please provide us with your OS, Python version, the code that produced this error and the entire traceback. -- My fellow Pythonistas, ask not

Re: [Tutor] Error 22

2015-01-07 Thread Steven D'Aprano
On Thu, Jan 08, 2015 at 01:14:46AM +, ishay.yem...@gmail.com wrote: > How I fix this error? when I open my python project (.py) it closes > immediately. > > please help. /: You have given us no information to work with. You might as well have said "my program doesn't work, please fix it"

Re: [Tutor] Error 22

2015-01-07 Thread Alan Gauld
On 08/01/15 01:14, ishay.yem...@gmail.com wrote: How I fix this error? when I open my python project (.py) it closes immediately. please help. /: You need to tell us a lot more. What does your project code do? What does it look like? Can you send a small example that shows this error? What

Re: [Tutor] Error 22

2015-01-07 Thread Joel Goldstick
On Wed, Jan 7, 2015 at 1:06 PM, Alan Gauld wrote: > On 08/01/15 01:14, ishay.yem...@gmail.com wrote: > >> How I fix this error? when I open my python project (.py) it closes >> immediately. >> >> please help. /: >> > > > Since the op sent from Windows, I'm guessing he isn't opening up a cmd windo

Re: [Tutor] Error 22

2015-01-07 Thread Danny Yoo
>>> How I fix this error? when I open my python project (.py) it closes >>> immediately. >> >> Since the op sent from Windows, I'm guessing he isn't opening up a cmd >> window then running his program. But I'm not a windows guy lately. >> Perhaps someone can tell him how to invoke the program? I

Re: [Tutor] Ideas for Child's Project

2015-01-07 Thread Ted
Hello, All, I too have an idea for students. I build seismometers for schools. A simple toy slinky spring/magnets/coil/plumbing parts. For students 10 to 90. please visit if interested http://tc1seismometer.wordpress.com/tc1-a-simple-solution/ This uses an Arduino Uno and simple amplifi

[Tutor] Working with prime numbers

2015-01-07 Thread Steven D'Aprano
Generating prime numbers is a programming problem that many beginners are interested in. For those who are, you may be interested in my PyPrimes project: At long last, I am pleased to announce the latest version of PyPrimes, a pure Python package for working with prime numbers. PyPrimes is co