Home / Questions / Other List में किसी value की count कैसे निकालते हैं? — interview में इसका सही जवाब क्या है? Other 0 Views Verified List में किसी value की count कैसे निकालते हैं? — interview में इसका सही जवाब क्या है? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified items.length('Python') items.length('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer items.count('Python') items.count('Python') Additional Explanation count() occurrences की संख्या देता है।
Verified count(items,'Python') count(items,'Python') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified items.frequency('Python') items.frequency('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।