Whats wrong with my python code? total_sum =0
for num in range (6,56,2) :
total_sum = total_sum + num
print(total_sum)
# Write your code here
for num in range(6,56,2): total_sum = total_sum + num total_sum = 0 print(total_sum) # Write your code here 23 5