Answers for "python str to char array"

3

python string to char array

>>> s = "foobar"
>>> list(s)
['f', 'o', 'o', 'b', 'a', 'r']
Posted by: Guest on May-14-2020
0

how to save string characters into char array or list in python

fd = open(filename, 'rU')
chars = []
for line in fd:
    chars.extend(line)
Posted by: Guest on December-17-2020

Python Answers by Framework

Browse Popular Code Answers by Language