1.line.strip().split(" ")
这是一个 Python 代码片段,作用是对一个字符串进行处理。
首先使用 strip() 方法删除字符串两端的空格(或其他特定字符)。
然后使用 split(" ") 方法将字符串按照空格进行分割,生成一个列表。
例如:
line = " this is a test "
line = line.strip()
result = line.split(" ")
print(result)
输出:
['this', 'is', 'a', 'test']