Skip to content

Instantly share code, notes, and snippets.

View kenreisan's full-sized avatar

kenreisan

View GitHub Profile
@kenreisan
kenreisan / bobp-python.md
Created July 9, 2019 17:45 — forked from sloria/bobp-python.md
A "Best of the Best Practices" (BOBP) guide to developing in Python.

The Best of the Best Practices (BOBP) Guide for Python

A "Best of the Best Practices" (BOBP) guide to developing in Python.

In General

Values

  • "Build tools for others that you want to be built for you." - Kenneth Reitz
  • "Simplicity is alway better than functionality." - Pieter Hintjens
/*
* Autor: Eduardo Romero
* Version: 1.0
*
* Programa para calcular los numeros de la serie de
* Fibonacci. Se usa el metodo recursivo.
*
* Por las limitantes del rango de numeros que puede
* contener un "unsigned long long" el numero de Fibonacci
* que puede mostrar el programa es fibo[93], pero no
/*
* Autor: Eduardo Romero
* Version: 1.0
*
* Programa para calcular los numeros de la serie de
* Fibonacci. Se usa el metodo iterativo.
*
* Por las limitantes del rango de numeros que puede
* contener un "unsigned long long" el numero de Fibonacci
* que puede mostrar el programa es fibo93.