“Lista de división de Python” Código de respuesta

dividir la lista en la lista de listas python en cada elemento n

big_list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16]
x = 4
list_of_lists = [big_list[i:i+x] for i in range(0, len(big_list), x)]
# [[1, 2, 3, 4], [5, 6, 7, 8], [9, 10, 11, 12], [13, 14, 15, 16]]
Anxious Alligator

separar una cuerda en Python

spam = "A B C D"
eggs = "E-F-G-H"

# the split() function will return a list
spam_list = spam.split()
# if you give no arguments, it will separate by whitespaces by default
# ["A", "B", "C", "D"]

eggs_list = eggs.split("-", 3)
# you can specify the maximum amount of elements the split() function will output
# ["E", "F", "G"]
Drab Dormouse

Python dividiendo la cadena en la lista

text = 'This is python!
x = text.split()
print(x)
Pixel 2075

Lista de división de Python

list = [11, 18, 19, 21]

length = len(list)

middle_index = length // 2

first_half = list[:middle_index]
second_half = list[middle_index:]

print(first_half)
print(second_half)
Brave Butterfly

Lista de división de Python

string = "this is a string" 		# Creates the string
splited_string = string.split(" ")	# Splits the string by spaces
print(splited_string) 				# Prints the list to the console
# Output: ['this', 'is', 'a', 'string']
VL07

Respuestas similares a “Lista de división de Python”

Preguntas similares a “Lista de división de Python”

Más respuestas relacionadas con “Lista de división de Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código