Visual Studio Code – for-loop error : "Output exceeds the size limit." (VSCode)
I was trying to make a for loop to sum the integers from 1 to 100 in Python and wrote the code like this : for i in range(1, 101) : sum_list = [] sum_list.append(i) print(sum(sum_list)) but it didn't print…