Answers for "Read the specific length of characters in a text file using the read() function"

0

Read the specific length of characters in a text file using the read() function

# Program to read the specific length 
# of characters in a file using read() function
file = open("python.txt", "r")
content = file.read(20)
print(content)
file.close()
Posted by: Guest on September-25-2021

Code answers related to "Read the specific length of characters in a text file using the read() function"

Python Answers by Framework

Browse Popular Code Answers by Language