Skip to content
Open
Changes from 1 commit
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: 6 additions & 4 deletions participants/scipy_018/doc/README.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
Ok so I guess you are reading this cuz you wanna use my code. There are some
functions that do stuf and thats:
The PR_tutorial package contains some simple functions to demonstrate the process of creating and merging a PR request.
Copy link

@ellieLitwack ellieLitwack Jul 14, 2023

Choose a reason for hiding this comment

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

This is much more professional - thank you for making that change!


One function computes the factorial of a number:

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

and this other part does something. I forget why that I did it:
Another function computes the Fibonacci sequence:

>>> fibonnaccci(100)
Copy link

@ellieLitwack ellieLitwack Jul 14, 2023

Choose a reason for hiding this comment

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

I think it would be helpful to know how to import this function.

Copy link
Author

Choose a reason for hiding this comment

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

Good catch.

[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!
If you find a bug, please report it on the issue tracker
or submit a pull request with a fix.