Daftar Parse dari String

import ast

x = '["A","B","C","D"]'
x = ast.literal_eval(x)
x

# Returns: ['A', 'B', 'C', ' D']
Important Ibex