Daftar ke String Python
list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
Amused Antelope
list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
# Python program to convert a list
# to string using list comprehension
s = ['I', 'want', 4, 'apples', 'and', 18, 'bananas']
# using list comprehension
listToStr = ' '.join([str(elem) for elem in s])
print(listToStr)
string.Join(", ", stringCollection); // "Value1, Value2, Value3
mystring = 'hello, world'
mylist = string1.split(', ') #output => ['hello', 'world']
myjoin1 = ', '.join(mylist) #output => 'hello, world'
myjoin2 = ' '.join(mylist) #output => 'hello world'
myjoin3 = ','.join(mylist) #output => 'hello,world'
string Something = string.Join(",", MyList);
https://mefiz.com/ # For Developer
import random
n = random.sample(range(1,51214), 5)
listToString = ''.join([str(elem) for elem in n])
print(n)
print(listToString)