Those were the code snippets from CS50 2022 - Lecture 9 - Flask.
<select name="sport">
<option disabled selected>Sport</option>
{% for sport in sports %}
<option value="{{ sport }}">{{ sport }}</option>
{% endfor %}
</select>
Are the double quotes around the string 'sport' unnecessary as 'sport' is already a string with double quotes? I personally want to write something like this, a little bit differently, without the quotes around {{ sport }}
<select name="sport">
<option disabled selected>Sport</option>
{% for sport in sports %}
<option value={{ sport }}>{{ sport }}</option>
{% endfor %}
</select>