Skip to content

gregthad/GregoryMorris

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 

Repository files navigation

Hello World!

My name is Gregory!

  • I am learning Git and GitHub.
  • GitHub is very interesting.
  • I also like the Python Language.

Fibonacci Sequence Generator

Generates Ten Numbers with a for-loop

def fibonacci():
    current, previous = 0, 1
    while True:
        yield current
        current, previous = current + previous, current

fib = fibonacci()

for x in range(10):
    print(next(fib))

About

Gregory Learning GitHub

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published