Answers for "hot to seperate letters of strings python"

2

split string into array every n characters python

string = '1234567890'
n = 2	# every 2 characters
split_string = [string[i:i+n] for i in range(0, len(string), n)]
# split_string = ['12', '34', '56', '78', '90']
Posted by: Guest on August-30-2020
3

how to split a word into letters in python

def split(word):
    return [char for char in word] 

word = "word"
print(split(word))
#output: ["w", "o", "r", "d"]
Posted by: Guest on February-27-2021

Code answers related to "hot to seperate letters of strings python"

Python Answers by Framework

Browse Popular Code Answers by Language