Not graded. So why do it?
Reflect
Write a docstring for this function.
- def predict_bitcoin_price(today_price):
- five_years = today_price / 2
- ten_years = 0
- return today_price, five_years, ten_years

Ethan
Here's what I have:
- def predict_bitcoin_price(today_price):
- '''
- Predict bitcoin prices over time.
- Parameters
- ----------
- today_price : float|int
- Price today.
- Returns
- -------
- today_price : float|int
- Price today.
- five_years : float|int
- Price in five years.
- ten_years : float|int
- Price in ten years.
- '''
- five_years = today_price / 2
- ten_years = 0
- return today_price, five_years, ten_years
Yay!
Book traversal links for Practice: more functions