# max

`max (float score1, float score2)`receives n scores (output of n score functions) and returns their max

### Input

* <mark style="color:purple;">score1, score2,</mark>**...**(float, scores) - n scores (results of score functions)

### Output

* <mark style="color:purple;">(float)</mark> - the max of the score list

**Example**

```python
score1 = rarity_max("city")
score2 = rarity_max("Country")
score3 = rarity_max("Continent")
score4 = .....
score_max = max(score1, score2, score3...)
```

**Where** -&#x20;

* <mark style="color:purple;">score1, score2, score3</mark> are the results of a score function.
* <mark style="color:purple;">score\_max</mark> is the max of score1, score2, score3...
