Yes but it matters to me though, I was analyzing the market and speed is very crucial, a default calculation takes like 2 hours.
Besides the long string can be automatically written too:
string="sum=array[0]"
for i in range(1,9+1):
string+="+array["+str(i)+"]"
print (string)
This way we avoid typos and mistakes.
RE: Python Code Speed Improvement