Report Bug
Qus :

What will be the output?

f = open("test.txt", "w")
f.write("Python")
f.seek(0)
print(f.read())

Qus

इसका परिणाम क्या होगा?

f = open("test.txt", "w")
f.write("Python")
f.seek(0)
print(f.read())


A. Python
B. Empty String
C. UnsupportedOperation Error
D. None


Solution
C. UnsupportedOperation Error






Report Bug