Python’da bir kelime listesi verildiğinde, listede istenen kelimenin silinmesini sağlayan program kodları:
Örnek:
1 2 3 4 5 |
<strong>Input:</strong> list - ["python", "algoritma", "ornekleri"] word = algoritma, N = 2 <strong>Output:</strong> list - ["python", "ornekleri"] |
Python Kodları:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
def RemoveIthWord(list, word, N): count = 0 for i in range(0, len(list)): if (list[i] == word): count = count + 1 if(count == N): del(list[i]) return True return False # Driver code list = ['geeks', 'for', 'geeks'] word = 'geeks' N = 2 flag = RemoveIthWord(list, word, N) if (flag == True): print("Updated list is: ", list) else: print("Item not Updated") |
Add Comment