Python Programming - Reading and Writing Files - Discussion

Discussion Forum : Reading and Writing Files - General Questions (Q.No. 31)
31.
How can you read and print the first 10 characters from a file named "sample.txt"?
with open("sample.txt", "r") as file:
    print(file.read(10))
first_ten_chars("sample.txt")
with open("sample.txt", "r") as file:
    print(file.readline(10))
chars = open("sample.txt").read(10)
print(chars)
Answer: Option
Explanation:
Using read(10) to read and print the first 10 characters of the file.
Discussion:
Be the first person to comment on this question !

Post your comments here:

Your comments will be displayed after verification.