给出一个文本文件,如何找到与给定的子字符串开始和结束索引相对应的行号?即使可以找到任何给定范围的值,我使用的数据集也包含重复项。
答案 0 :(得分:0)
line_number = my_string[:start_index].count("\n")
I guess ...
my_string = """
hello
test
line
numbers
"""
print(my_string[:14].count("\n")) # the 14th character is the 3rd line