Answers for "how to turn char array to stringpythoin"

6

python string to char array

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

char array to string

char arr[ ] = "This is a test";

string str(arr);


//  You can also assign directly to a string.
str = "This is another string";

// or
str = arr;
Posted by: Guest on June-26-2021

Python Answers by Framework

Browse Popular Code Answers by Language