Home / Questions / Other File में text लिखने का तरीका क्या है? — interview में इसका सही जवाब क्या है? Other 0 Views Verified File में text लिखने का तरीका क्या है? — interview में इसका सही जवाब क्या है? #python #python programming #coding #developer Sarkari Result QA Bank Editorially reviewed exam information Share
Verified write('data.txt','Hello') write('data.txt','Hello') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified file.write('data.txt') file.write('data.txt') Additional Explanation यह विकल्प सही समाधान नहीं है।
Verified Correct Answer with open('data.txt', 'w', encoding='utf-8') as f: f.write('Hello') with open('data.txt', 'w', encoding='utf-8') as f: f.write('Hello') Additional Explanation w mode file को write के लिए खोलता है।
Verified open.write('data.txt') open.write('data.txt') Additional Explanation यह विकल्प सही समाधान नहीं है।