“Konwertuj listę na ciąg” Kod odpowiedzi

Lista do String Python

list1 = [1, 2, 3]
str1 = ''.join(str(e) for e in list1)
Amused Antelope

Lista ciągów Python do listy

>>> import ast
>>> x = '[ "A","B","C" , " D"]'
>>> x = ast.literal_eval(x)
>>> x
['A', 'B', 'C', ' D']
>>> x = [n.strip() for n in x]
>>> x
['A', 'B', 'C', 'D']
Fragile Gecko

Konwertuj listę na ciąg

# 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)  
Frantic Falcon

Lista do String Python

List = ["ITEM1", "ITEM2", "ITEM3"]
string_version = "".join(List)

print(string_version)
Fair Finch

Lista do String Python

list1 = ['1', '2', '3']
str1 = ''.join(list1)
Amused Antelope

Konwertuj listę na ciąg

list1 = ['1', '2', '3']


str1 = ''.join(list1)
Courageous Cormorant

Odpowiedzi podobne do “Konwertuj listę na ciąg”

Pytania podobne do “Konwertuj listę na ciąg”

Więcej pokrewnych odpowiedzi na “Konwertuj listę na ciąg” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu