-2
下面是代碼(我知道下面的代碼是錯誤的語法只是分享理解需求)我正在使用測試多個for循環。python for循環多個條件
server = ['1']
start = 2
end = 4
for x in range(start, end + 1) and for y in serverip:
print x
print y
要求。循環迭代的 不得跨越服務器列表長度或範圍。
Input 1
start = 2
end = 4
server list length = 1 that is server = ['1']
expected output 1:
print
x = 2
y = 1
Input 2
start = 2
end = 4
server list length = 2 that is server = ['1','2']
expected output 2:
print
x = 2
y = 1
x = 3
y = 2
Input 3
start = 1
end = 1
server list length = 2 that is server = ['1','2']
expected output 3:
print
x = 1
y = 1
請幫忙。
這不是有效的語法,但再次,這就是你正在尋求幫助。請添加有意義的輸入並顯示預期的輸出。 – e4c5
我覺得你要麼'zip'或者只是一個嵌套循環,但我只能猜測,單個問題是以不明確的方式寫的。 –
這是基本的編程。尋找嵌套循環;-) – norok2