Posts Tagged ‘ python-tips ’

yablog: python tips: array computation

January 25, 2012
By

python tips : array computation. As previous post shows, for-loop calculation in array computations needs more processing time than vectorized calculation. There are some techniques for fasten calculation over arrays. Sample ...

Read more »

yablog: python tips: array computation with numpy

January 25, 2012
By

python tips : array computation with numpy. I compared performance of array computations. Listed below are results and codes of some experiments which introduced in the book named 'Python Scripting for Computational ...

Read more »

yablog: python tips: create shapefile with python

January 24, 2012
By

python tips : create shapefile with python. Long time has been passed since last post. Here, I want to show the way to create Shapefile, which is standard data format for geometry data, using python. Among several python ...

Read more »

Game Up! Game Development Blog: Python Tips and Tricks

November 15, 2011
By

Here's some quick Python tips and tricks that you can use when coding. There's two that I'm going to go into detail on - conditional variable setting, and multiple equality checks. ----1. Conditional Variable Assignment---- ...

Read more »

The Kemp Project: Python tips – List iteration and item removal

September 26, 2011
By

Python tips - List iteration and item removal. It's not a common task for me, but occasionally my code is required to work through a list and delete items that are not wanted. Take, for example, the case of appending the data ...

Read more »

The Kemp Project: Python tips – List iteration and item removal

September 26, 2011
By

Python tips - List iteration and item removal. It's not a common task for me, but occasionally my code is required to work through a list and delete items that are not wanted. Take, for example, the case of appending the data ...

Read more »

Python Tips: List Manipulation | Prima DIY 太棒了! 自己來!

September 8, 2011
By

DIY to Improve Yourself and the Environment. Skip to content. Home · About · ← Python Tips : add a key/value in a dictionary. Python Tips : List Manipulation. Posted on September 8, 2011 by william ...

Read more »

Getting Started With Python Dictionaries: Python Tips

September 3, 2011
By

Getting Started With Python Dictionaries: Python Tips . September 3, 2011 By cmdline Leave a Comment. Dictionary in Python is a data structure that lets users store and retrieve things in python. As the name “dictionary” suggests, it has “key” ...

Read more »

Information World: [google-appengine] Aw: Thread-safe Python Tips

July 6, 2011
By

Aw: Thread-safe Python Tips . Hi,. Class variables can introduce pitfalls within a threaded environment. See http://stackoverflow.com/questions/1072821/is-modifying-a-class-variable-in-python-threadsafe. Regards, ...

Read more »

World Information Corner: Re: [google-appengine] Thread-safe …

July 1, 2011
By

Re: Thread-safe Python Tips . You don't have to use the "global" keyword because this is Python, not PHP. If you wanted to use that variable in another module, you would have to import it like this: ...

Read more »