I have an array called list, for example
list = [0,1,2,3]
in the HTML when i do this
<body>
{{ list }}
</body>
the output will be [0,1,2]
what i want is
{{ list[0] }}
but this statement is giving me error, how i can just print the first element