Answers for "split string into array python"

26

how to split a string by character in python

def split(word): 
    return [char for char in word]  
      
# Driver code 
word = 'geeks'
print(split(word)) 

#Output ['g', 'e', 'e', 'k', 's']
Posted by: Guest on December-07-2019
24

split string python

file='/home/folder/subfolder/my_file.txt'
file_name=file.split('/')[-1].split('.')[0]
Posted by: Guest on April-01-2020
0

python separate string and number in array

numbers = []
animals = []
with open('textfile.txt') as f:
    for x in f:
        try:
            numbers.append(int(x.replace("n", "")))
        except:
            animals.append(str(x.replace("n", "")))
print(numbers)
print(animals)

# Output
# [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# ['dog', 'cat', 'fish', 'bird']
Posted by: Guest on May-22-2021
0

python split array

>>> x = np.arange(9.0)
>>> np.split(x, 3)
[array([0.,  1.,  2.]), array([3.,  4.,  5.]), array([6.,  7.,  8.])]
Posted by: Guest on June-01-2021

Code answers related to "split string into array python"

Python Answers by Framework

Browse Popular Code Answers by Language