Python|使用换行符分隔字符串的方法
给定一个字符串,编写一个Python程序,根据换行符分隔字符串。下面给出了一些解决给定任务的方法。
方法 #1:使用splitlines()
# Python code to demonstrate
# to split strings
# on newline delimiter
# Initialising string
ini_str = 'Geeks\nFor\nGeeks\n'
# Printing Initial string
print ("Initial String", ini_str)
# Splitting on newline delimiter
res_list = ini_str.splitlines()
# Printing result
print("Resultant prefix", str(res_list))
输出:
Initial String Geeks
For
Geeks
Resultant prefix ['Geeks', 'For', 'Geeks']
方法 #2:使用split()
方法
# Python code to demonstrate
# to split strings
# on newline delimiter
# Initialising string
ini_str = 'Geeks\nFor\nGeeks\n'
# Printing Initial string
print ("Initial String", ini_str)
# Splitting on newline delimiter
res_list = (ini_str.rstrip().split('\n'))
# Printing result
print("Resultant prefix", str(res_list))
输出:
Initial String Geeks
For
Geeks
Resultant prefix ['Geeks', 'For', 'Geeks']