Home / Questions / Other Python में list में किसी value को remove कैसे करते हैं? Other 0 Views Verified Python में list में किसी value को remove कैसे करते हैं? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified items.delete('Python') items.delete('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified items.pop('Python') items.pop('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer items.remove('Python') items.remove('Python') Additional Explanation remove(value) पहली matching value हटाता है।
Verified items.drop('Python') items.drop('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।