Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions participants/scipy_008/doc/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
Ok so I guess you are reading this cuz you wanna use my code. There are some
functions that do stuf and thats:
You are reading this because you want to use my code.
Check out this function. This will import a factorial:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

instead of "a factorial" you could write something like "the factorial function"

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This looks okay - but perhaps you could expand further


>>> from simple_functions import factorial
>>> factorial(10)
9

and this other part does something. I forget why that I did it:
This functino will make a fibonnacci sequence up to 100:

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

small typo "functino" -> "function"


>>> fibonnaccci(100)
>>> fibonnacci(100)
[0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]

If you can't use it, its kind of your problem, not mine!
Give it a try!