📜  python删除字符串行 - Python代码示例

📅  最后修改于: 2022-03-11 14:47:04.809000             🧑  作者: Mango

代码示例1
output_String = input_String.split("\n", 1)[1]
#this will get rid of the first line and keep the rest
output_String = input_String.split("\n", 3)[1]
# this will get rid of the first 3 lines ecept the 2nd line and keep everything else
output_String = input_String.split("\n", 4)[0]
# this will get rid of the first 4 lines ecept the first and keep any lines after the 4th line if there are any