Python Forum
difference between word: and word[:] in for loop
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
difference between word: and word[:] in for loop
#1
Hi Friends, I have some confusion in python kindly help me. What is difference between these two statements
 
word = ['xyz', 'dsddf', 'sdfs'] 
for w in word:
    if len(w) > 3:
       word.insert(0, w)
and
word = ['xyz', 'dsddf', 'sdfs']
for w in word:
  if len(w) > 3:
      word.insert(0, w) 

 
for w in word: 
VS
for w in word[:]:
??
Reply
#2
It is called slicing. Without any numbers however it just returns a shallow copy of the object instead. So you are looping a shallow copy of the object word instead of actual object word.

You should always loop over a copy of the object if you are modifying that object in that same loop. Other wise you can have problems. If you have nested lists inside your list..then you will need a deep copy.
Recommended Tutorials:
Reply
#3
got it...!!
Thanks Dear!!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Extracting parts of paragraphs from word documents using python-docx library & lists Den0st 1 28,357 Oct-08-2025, 05:56 AM
Last Post: OtiliaGen
  How to remove unwanted images and tables from a Word file using Python? rownong 2 2,306 Feb-04-2025, 08:30 AM
Last Post: Pedroski55
  Word matching with specific parameters CascadeDiver 3 2,081 Jan-28-2025, 02:10 PM
Last Post: perfringo
  word guessing game, hints STUdevil 1 3,257 Oct-12-2024, 01:53 AM
Last Post: menator01
  word game, how to give hints STUdevil 5 2,861 Oct-07-2024, 06:20 PM
Last Post: STUdevil
  Retrieve word from string knob 4 2,244 Jan-22-2024, 06:40 PM
Last Post: Pedroski55
  How to create a table with different sizes of columns in MS word pepe 8 16,427 Dec-08-2023, 07:31 PM
Last Post: Pedroski55
  extract substring from a string before a word !! evilcode1 3 2,756 Nov-08-2023, 12:18 AM
Last Post: evilcode1
  Replace a text/word in docx file using Python Devan 4 44,842 Oct-17-2023, 06:03 PM
Last Post: Devan
  How to summarize an article that is stored in a word document on your laptop? Mikedicenso87 2 2,671 Oct-06-2023, 12:07 PM
Last Post: Mikedicenso87

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020