对于下列程序:total = 0for i in range(5):    total += iprint(i)
for循环结束后,循环变量i不存在,导致程序错误
A、正确
B、错误