What is the output of the following code:
file = open('data.txt', 'r')
content = file.read()
print(content)
content = file.read()
print(content)
What is the output of the following code:file = open('data.txt', 'r') Correct Answer An error will occur
content = file.read()
print(content)
মোঃ আরিফুল ইসলাম
Feb 20, 2025