Posts by Luis Gabriel • 1 point
2 posts
-
-1
votes1
answer46
viewsA: Doubt about python/basic algorithms
I managed to do what I want, =) nf = int(input("Quantos numeros da sequencia de fibonati voce quer ?")) t = 0 tt = 1 ttt = 1 print("{} - ".format(t),end="") def fibo(a, b, c): c = b + a print("{} -…
-
-2
votes1
answer46
viewsQ: Doubt about python/basic algorithms
I am making a personal challenge,develop the smallest program possible to manage a fibonati sequence and that shows the fi(gold number). Most recent code : nf = int(input("Quantos numeros da…