Read line number 4 from the following file
238
Given Input: test.txt file: Create a test.txt file and add the below content to it.
line1
line2
line3
line4
line5
line6
line7
Expected Output:
Program:
# read file
with open("test.txt", "r") as fp:
# read all lines from a file
lines = fp.readlines()
# get line number 3
print(lines[2])
Output:
This Particular section is dedicated to Programs only. If you want learn more about Python. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS
Program:
# read file with open("test.txt", "r") as fp: # read all lines from a file lines = fp.readlines() # get line number 3 print(lines[2])
Output:
This Particular section is dedicated to Programs only. If you want learn more about Python. Then you can visit below links to get more depth on this subject.
# C Tutorials
# JAVA Tutorials
# HTML Tutorials
# Computer Fundamental
# Data Structure
# DBMS Tutorials
SQL
# C# Language
# R Language
# PHP
# Python
# Vue JS