'Normal looping or looping over indiced list -Difference

what's the difference between looping over list this way

for i in lst :
   print("Do something")

and this way

for i in lst[:] :
    print("do something")


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source