Python的流程控制是可以嵌套的,只需按格式要求缩进即可,示例如下:
for m in [1, 2, 3, 4, 5]: for n in [6, 7, 8 ,9, 10]: if m > 2 and n > 7: print(m + n)