Python List Removal: Removing All Occurrences of 'C' from a List
The provided code has a syntax error on line 2. The list should be closed with a square bracket (']') instead of a curly brace ('}').
Here's the corrected code:
Language = ['C','C++','C#','Java','C','Python','C'] while 'C' in Language: Language.remove('C') print(Language)
This code will remove all occurrences of 'C' from the list 'Language' and print the updated list. The output will be:
['C++', 'C#', 'Java', 'Python']
原文地址: https://www.cveoy.top/t/topic/mVey 著作权归作者所有。请勿转载和采集!