最佳答案
我有一个多行字符串,我想在每一行上做一个操作,如下所示:
inputString = """Line 1
Line 2
Line 3"""
我想迭代每一行:
for line in inputString:
doStuff()