将下面Python代码中的range(1, 5)调整为range(5)输出结果相同。( )
loopCount = 0
for i in range(1, 5):
for j in range(i):
loopCount += 1
print(loopCount)
对
错