Tutorial search

Tutorials
Stuff
Affiliates

Cool Stuff




The fastest way to master the basics of Adobe Photoshop

Click here to find out how

Photoshop Templates


Featured Photoshop templates - professional ready to use designs for your next project.

View all templates

Defining Functions - Python tutorial


The ‘def’ command defines, or creates, a function that can be used throughout the program.
Category: Python tutorials > Basics - Difficulty:


More cool Python tutorials:



Boolean Expressions
Boolean Expressions
Boolean expressions are expressions that have the values ‘True’ or ‘False’ as results.
Category: Python tutorials > Basics - Difficulty:
Pygame in 10 Easy Steps
Pygame in 10 Easy Steps
This is a line-by-line tutorial that will guide you through the basics of creating a simple game using the popular Pygame library. If you know Python and want to learn how to make games, start here!
Category: Python tutorials > Development - Difficulty:
Intro to Python Generators
Intro to Python Generators
Generators are a very cool Python abstraction that allows you to greatly simplify control flow and can also lead to much lower memory consumption.
Category: Python tutorials > Basics - Difficulty:
Developing a full-text indexer in Python
Developing a full-text indexer in Python
As the volume of information grows, effective means of locating specific information become ever more crucial. This column discusses the field of full-text indexing, with a focus on the author's public-domain indexer module.
Category: Python tutorials > Searching - Difficulty:
Functional programming in Python
Functional programming in Python
Although users usually think of Python as a procedural and object-oriented language, it actually contains everything you need for a completely functional approach to programming. This article discusses general concepts of functional programming, and illustrates ways of implementing functional techniques in Python.
Category: Python tutorials > Development - Difficulty: