I have a list(say, A), of 300 elements like below:
A=(
("a" "b")
("c" "d")
("e" "f")
("g" "h")
...
...
...
)
Like above, i have 300 elements, where 1st element is ("a" "b").
I want to create a list A without ""(double quotes), like shown below:
A=(
(a b)
(c d)
(e f)
(g h)
...
...
...
)
How can i do this?
Thanks,
LEO