Computer Science, asked by sp963108986, 8 months ago

f = open(“WORLDCUP.TXT”)
print(f.read(2))
print(f.read(2))
print(f.read(4))

write the output considering the content stored in file “WORLDCUP.TXT” as India won the Cricket world cup of 1983.

Answers

Answered by nityasren2003
0

Answer:

output:

D

D

A

Explanation:

India won the cricket world cup of 1983

Similar questions