Hello,
I created html file with Checkbox and i use python
when i check one box and submit i have problem with list
when i check 2 box or more and submit i see the result list like
['120', '104', '12']
i can use "for" to loop the list and do action
but when i check one box i see the result withour list like
120
not ['120']
whe i use for it the loop will be 1 , 2, 0
how can i fix this
Thanks