Not a duplicate of Python - convert string to an array since answers there are relevant only for Python 2
How do I convert a string to a Python 3 array?
I know how to convert a string into a list:
>>> string = 'abcd'
>>> string
'abcd'
>>> list(string)
['a', 'b', 'c', 'd']
However, I need a Python array.
I need an answer specific for Python 3