Answers for "how to split a string into lines in 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
0

split string into lines

Just use tr command for separating words output into separate lines:
tr -s '[[:punct:][:space:]]' 'n'
Example for
cat file.txt | tr -s '[[:punct:][:space:]]' 'n'
Posted by: Guest on October-22-2020

Code answers related to "how to split a string into lines in python"

Python Answers by Framework

Browse Popular Code Answers by Language