Observations

After a plant count, the result is:

    planten_telling = ["vulgaris", "veronica", "lotus", "vulgaris", "hederacea", "veronica", "vulgaris"]

Create a Python script that converts this list into a dictionary. The plant species should be the keys and the counts should be the values. Print the result of the plant count.

stdout

    {'vulgaris': 3, 'veronica': 2, 'lotus': 1, 'hederacea': 1}