为什么 python 循环继续工作与其他编程语言不同

why does python loop continue work differently from other programming languages

在其他编程语言中,当循环中遇到 continue 时,它​​不会 运行 它下面的代码,只会根据条件集执行下一个循环。

然而在 python 中,它实际上不会触发 continue 在相同的确切值上多达 3 次,直到 continue 实际触发终于有人能告诉我为什么会这样吗?

函数

def get_section(self, address):
    for section in self.sections:
        section_base = section.image_base + section.VirtualAddress
        section_end = section_base + section.Misc_VirtualSize 
        print 'section_base= 0x%x' % section_base, ' section_end = 0x%x' % section_end
        print 'VirtualAdderss = 0x%x' % section.VirtualAddress, 'Misc_virtualSize = 0x%x' % section.Misc_VirtualSize
        if address < section_base or address >= section_end:
            print 'continuued'
            continue
        print 'not continuued'
        print 'Section name = ', section.section_name
        return section
    raise NotImplementedError()


这是日志

address = 0x4013f8

section_base= 0x401000  section_end = 0x5574e5
VirtualAdderss = 0x1000 Misc_virtualSize = 0x1564e5
not continuued
Section name =  text

address = 0x4013f8

section_base= 0x401000  section_end = 0x5574e5
VirtualAdderss = 0x1000 Misc_virtualSize = 0x1564e5
not continuued
Section name =  text

address = 0x55869c
section_base= 0x401000  section_end = 0x5574e5
VirtualAdderss = 0x1000 Misc_virtualSize = 0x1564e5
continuued

section_base= 0x558000  section_end = 0x5818ac
VirtualAdderss = 0x158000 Misc_virtualSize = 0x298ac
not continuued
Section name =  rdata


如您所见,它仅在第 3 次继续时没有继续 2 次,我不明白为什么它不能从第一次开始工作?

前两次,不满足if条件;因此 continue 语句没有被执行。