playground:playground

Ceci est une ancienne révision du document !


Bac à sable

8-)

1) Note de bas de page

@@_SP_@@

Bout de Python

# Python 3: Fibonacci series up to n
def fib(n):
    a, b = 0, 1
    while a <n:
        print(a, end=' ')
        a, b = b, a+b
        print()
 
fib(1000)

sable.


1)
Ma note.
  • playground/playground.1583326913.txt.gz
  • Dernière modification : 2020/04/11 02:26
  • (modification externe)