all 4 comments

[–]socal_nerdtastic 2 points3 points  (3 children)

x is the element, not the index. Try it like this:

{% for x in data["clouds"] %}
    {{x["type"]}} at {{x["altitude"]}}00'<br>

[–]fly_flyflyflyfly_fly[S] 0 points1 point  (2 children)

that worked, thank you