I have a list of days with repeated entries (as in the example shown below). I don't know what's in the list, as it is provided by the user.
- 2022-07-20
- 2022-07-20
- 2022-07-20
- 2022-07-21
- 2022-07-22
- 2022-07-22
- 2022-07-22
- 2022-07-22
- 2022-07-23
- 2022-07-23
I want to get all the individual entries in the list, without necessarely knowing how many times they appear (in other words I want to know that there is at least one of each of the entries). The output should look something like this:
- 2022-07-20
- 2022-07-21
- 2022-07-22
- 2022-07-23
Is there a python function to do so?