Python Nested Loops: Understanding 'for i in range(1,6): for j in range(5,0,-1): print(i,j)'
The output of the code is:
1 5 1 4 1 3 1 2 1 1 2 5 2 4 2 3 2 2 2 1 3 5 3 4 3 3 3 2 3 1 4 5 4 4 4 3 4 2 4 1 5 5 5 4 5 3 5 2 5 1
原文地址: https://www.cveoy.top/t/topic/pIGB 著作权归作者所有。请勿转载和采集!