Fixed the hint titles to match the instruction task titles so they would show on the website. (#2763)

This commit is contained in:
BethanyG
2021-11-11 10:26:42 -08:00
committed by GitHub
parent 6ad0cd69ac
commit cb4928498f
2 changed files with 4 additions and 4 deletions

View File

@@ -4,11 +4,11 @@
- [The Python Numbers Tutorial][python-numbers-tutorial] and [Python numeric types][python-numeric-types] can be a great introduction.
## 1. Estimating exchangeable value
## 1. Estimate value after exchange
- You can use the [division operator][division-operator] to get the value of exchanged currency.
## 2. Changes after exchanging
## 2. Calculate currency left after an exchange
- You can use the [subtraction operator][subtraction-operator] to get the amount of changes.
@@ -24,7 +24,7 @@
**Note:** The `//` operator also does floor division. But, if the operand has `float`, the result is still `float`.
## 5. Calculate exchangeable value
## 5. Calculate value after exchange
- You need to calculate `spread` percent of `exchange_rate` using multiplication operator and add it to `exchange_rate` to get the exchanged currency.
- The actual rate needs to be computed. Remember to add exchange rate and exchange fee.

View File

@@ -28,7 +28,7 @@
- Remember that tuples support all [common sequence operations][common sequence operations].
- Could you re-use your `compare_records()` function here?
## 5. "Clean up" and format a report of all records
## 5. "Clean up" & format a report of all records
- Remember: tuples are _immutable_, but the contents can be accessed via _index_ using _bracket notation_.
- Tuples don't have to use parentheses unless there is _ambiguity_.