After executing a mysql query, got the results in the form of tuple in robot framework.
In order to do further operations, I would need to convert that tuple into list.
Ex:
@{id}= Query select column1 from table_name where column2 = '${var1}' and column = '${var2}'
Here the @{id} would be returned as a tuple.
EX :
( (1), (4) )
Now I need to convert the above tuple into list as below :
[ 1, 4 ]