What is the output of the following code:
with open('data.txt', 'r') as file:
content = file.read(10)
print(content)
content = file.read(10)
print(content)
What is the output of the following code:with open('data.txt', 'r') as file: Correct Answer The first 10 characters of data.txt
content = file.read(10)
print(content)
মোঃ আরিফুল ইসলাম
Feb 20, 2025