0
Work with file in python
file = open ("VT.txt", "r") for i in file : print (file.read ()) file.close () When i run this code, I donât get first line of file VT.txt Remaining all lines get it.
3 Answers
0
Change the name of the variable
Plus, i'm pretty sure you can do:
File_ = open("vt...","r").read()
Try it and let me know if it works :)
0
thanks dear for help me
but still it doesnât work