Answers for "how to take the first line in {} python"

5

how to read the first line in a file python

f = open("test.txt", 'r')
variable = f.readline(1)
print(variable)
Posted by: Guest on May-30-2020

Code answers related to "how to take the first line in {} python"

Python Answers by Framework

Browse Popular Code Answers by Language