I am developing a flask application, in which I have a dropdown, when I select an option, it should display below the dropdown "Your selected score : " and the selected score.
I am displaying a dropdown like below :
<select name="score">
{% for score in range(6) %}
<option value={{score}}> {{score}} </option>
{% endfor %}
</select>
I am displying thr selected value like :
Your selected score : {{ score }}
I tried and search a lot couldn't find anything. Any leads would be helpful.