Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I know this isn't a question about a specific snippet of code or anything, but here goes -

I've been messing around with the idea of learning Python since I'm pretty bored with PHP (and web development in general), but I can't think of any projects to help me learn. I've already worked through some of Project Euler with Python, but it's getting old. I know the basics, and I want to write something more fun that will introduce me to new things in Python.

Is there a cliche beginner project for Python? (for example, PHP's would be a blog or something similiar)

Are there any common Python projects for newcomers, or any uncommon ones that you'd suggest?

Any ideas would help.

share|improve this question
2  
Hello world program :) – Elalfer Jan 15 '11 at 5:48

3 Answers

up vote 4 down vote accepted

Pick something that you think is interesting, and program it in python.

If you want to step out of web development for a bit, you could try writing up a simple game with pygame.

share|improve this answer
Pygame looks pretty interesting, I think there might be some fun to be had there. :D. I'll start with that. – Andrew Jan 15 '11 at 6:06
That actually cool! didn't know that existed! Yeah that will teach the language effectively I think! – Saher Jan 15 '11 at 6:30
Pygame is pretty slick - It's super easy to get basic animations going. – Seth Jan 15 '11 at 6:52

You could write a blog in Python just as easily as you could write a blog in PHP, if you use a framework like Django (so that you don't have to worry about the details of handling HTTP requests).

Alternatively, you could mess around with things of a game-like graphics nature using Pygame.

But really, "good" projects are the ones that you find interesting. Instead of asking "what can I write in Python," ask yourself "what do I want to write" first, and then after that, figure out how to do it in Python.

share|improve this answer
I'll probably get into Django eventually, but PHP is the closest thing to a programming language I've ever known, so I was looking for something new...and like...outside of the browser. :P – Andrew Jan 15 '11 at 5:55

If you go through the answers to these questions you'll find plenty of ideas:

Learning python: simple functions to write

Are there any sites that do python programming challanges similar to ProjectEuler only maybe not so math oriented?

Solving the PythonChallenge had me thinking about how it would be easy to program something to watermark digital images in an secure and "invisible" way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.