background preloader

Python

Facebook Twitter

Xml

Python Tips, Tricks, and Hacks. Orange - Data Mining Fruitful & Fun. Copy of Orange para projetos rápidos by Vanessa Gomes on Prezi. Livros web. Silveira's python Bookmarks on Delicious. Dobrando o Python Com Expressões Regulares - Mind Bending. Dando continuidade no assunto de Expressões Regulares , hoje vou mostrar em que casos o uso de uma expressão regular supera (e muito) um trecho (relativamente complexo) de código Python. Expressões Regulares Respirem fundo e vamos lá… Contexto Para este exemplo vou usar um contexto simples: uma aplicação que valida endereços IPs. Caso alguém esteja se perguntando, sim, este é um exemplo real. Audio. What makes Python so AWESOME.

Ambiente. Web2py. Srapping. Django. PyPy is faster than C, again: string formatting. String formatting is probably something you do just about every day in Python, and never think about.

PyPy is faster than C, again: string formatting

It's so easy, just "%d %d" % (i, i) and you're done. No thinking about how to size your result buffer, whether your output has an appropriate NULL byte at the end, or any other details. A C equivalent might be: char x[44]; sprintf(x, "%d %d", i, i); Tipfy.org.