Report Bug
Qus : Which statement will open file data.txt in append mode?
Qusकौन सा स्टेटमेंट data.txt फाइल को एपेंड मोड में खोलेगा?

A. f = open("data.txt", "a")
B. f = Open("data.txt", "ab")
C. f= new("data.txt", "a")
D. open("data.txt", "a")


Solution
A. f = open("data.txt", "a")






Report Bug