“Lista Python do ciągu” 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 Python String

# 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 Python do ciągu

By using ''.join

list1 = ['1', '2', '3']
str1 = ''.join(list1)
Stupid Shrew

Lista Python do ciągu

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'
NatanM

Lista Python do ciągu

list
Curious Caiman

Odpowiedzi podobne do “Lista Python do ciągu”

Pytania podobne do “Lista Python do ciągu”

Więcej pokrewnych odpowiedzi na “Lista Python do ciągu” w Python

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

Przeglądaj inne języki kodu