Skip to content

Instantly share code, notes, and snippets.

@Fhernd
Created July 3, 2018 22:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Fhernd/808c4fd0a10ea43ee340601059121894 to your computer and use it in GitHub Desktop.
Save Fhernd/808c4fd0a10ea43ee340601059121894 to your computer and use it in GitHub Desktop.
Escribir sobre un archivo no existente. OrtizOL.
def generador_fibonacci():
fib1 = 0
fib2 = 1
while True:
yield fib2
fib1, fib2 = fib2, fib1 + fib2
with open('fibonaccis-2.txt', 'xt') as f:
contador = 1
for fib in generador_fibonacci():
f.write(str(fib))
if contador == 10:
break
contador += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment