Monthly Archives: November 2013

Profiler for Python

Line profiler for python line_profiler is a module for doing line-by-line profiling of functions. kernprof is a convenient script for running either line_profiler or the Python standard library’s cProfile or profile modules, depending on what is available. They are available under … Continue reading

Posted in Linux, Optimization, programming, Python, Software, Ubuntu | Tagged , , , , , , , , , , , , | Leave a comment

Google python class (video tutorial)

Google python class Part 1 Google python class Part 2 Google python class Part 3

Posted in Uncategorized | Tagged , , , , , , , , , | Leave a comment

Python tips &tricks (1): make a copy of a list

Let’s make a list: >>> a = [1,2,3] then if you do this: >>> b=a Python doesn’t make a copy of a, it just points to the part of memory and connects it to b. So if we change a, b will change as well. … Continue reading

Posted in Linux, programming, Python, Software, Ubuntu | Tagged , , , , , , , , | Leave a comment

Python tutorials

Very useful source of python tutorials: https://wiki.python.org/moin/BeginnersGuide/Programmers  

Posted in Linux, programming, Python, Software, Ubuntu | Tagged , , , , , , , , | 1 Comment