“Lista ciągu do listy” Kod odpowiedzi

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

Lista ciągu do listy

import ast

l1 = ['aa','bb','cc']
s = str(l1)
ast.literal_eval(s)
>>> ['aa','bb','cc']
Bored Bee

Python Conwert List na listę strun

# Basic syntax using list comprehension:
lsit_of_strings = [str(i) for i in your_list]

# Example usage:
your_list = ['strings', 'and', 'numbers', 11, 23, 42]
lsit_of_strings = [str(i) for i in your_list]
print(lsit_of_strings)
--> ['strings', 'and', 'numbers', '11', '23', '42'] # List of strings
Charles-Alexandre Roy

Konwertuj reprezentację ciągu na listę na listę

# Python code to demonstrate converting 
# string representation of list to list
# using ast.literal_eval()
import ast
  
# initializing string representation of a list
ini_list = "[1, 2, 3, 4, 5]"
  
# Converting string to list
res = ast.literal_eval(ini_list)
Odd Opossum

Konwertuj listę na ciąg

using System;
using System.Collections.Generic;
 
public class Example
{
    public static void Main()
    {
        List<string> list = new List<string>() { "A", "B", "C" };
        char delim = ',';
 
        string str = String.Join(delim, list);
        Console.WriteLine(str);
    }
}
 
/*
    Output: A,B,C
*/
Amr Moniem

Odpowiedzi podobne do “Lista ciągu do listy”

Pytania podobne do “Lista ciągu do listy”

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

Przeglądaj inne języki kodu