Home / Questions / Other Python में list में item जोड़ने के लिए कौन सा method है? — interview में इसका सही जवाब क्या है? Other 0 Views Verified Python में list में item जोड़ने के लिए कौन सा method है? — interview में इसका सही जवाब क्या है? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified items.push('Python') items.push('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified items.insert_end('Python') items.insert_end('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer items.append('Python') items.append('Python') Additional Explanation append() list के अंत में item जोड़ता है।
Verified items.add('Python') items.add('Python') Additional Explanation यह विकल्प सही समाधान नहीं है।