Click here to Skip to main content
15,883,606 members
Articles / .NET

How to make python faster

7 Jan 2013CPOL 9.9K   5   1
Python and other scripting languages are sometimes dismissed because of their inefficiency compared to compiled languages like C. For example here are implementations of the fibonacci sequence in C and Python:int fib(int n){ if (n < 2) return n; else return fib(n - 1) + fib(n - 2);}int m
We're sorry, but the article you are trying to view was deleted at 15 Jun 2015.

Please go to the .NET Table of Contents to view the list of available articles in this section.