Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

how to edit a specific line in text file in python

# with is like your try .. finally block in this case
with open('stats.txt', 'r') as file:
    # read a list of lines into data
    data = file.readlines()

print data
print "Your name: " + data[0]

# now change the 2nd line, note that you have to add a newline
data[1] = 'Mage
'

# and write everything back
with open('stats.txt', 'w') as file:
    file.writelines( data )
Comment

editing specific line in text file in python

# with is like your try .. finally block in this case
with open('stats.txt', 'r') as file:
    # read a list of lines into data
    data = file.readlines()

print data
print "Your name: " + data[0]

# now change the 2nd line, note that you have to add a newline
data[1] = 'Mage
'

# and write everything back
with open('stats.txt', 'w') as file:
    file.writelines( data )
Comment

PREVIOUS NEXT
Code Example
Python :: how to count max repeated count in list python 
Python :: AssertionError: Relational field must provide a `queryset` argument, override `get_queryset`, or set read_only=`True` 
Python :: imbade image to jupyter notebook 
Python :: print specific part in bold or colours and end. 
Python :: python iterate columns 
Python :: drop columns pandas 
Python :: python3 as default python path macos 
Python :: scikit learn r2 score 
Python :: python send sms 
Python :: install gtts 
Python :: Python sort dataframe by list 
Python :: kivymd simple button 
Python :: dataframe deep copy 
Python :: resize image array python 
Python :: python flask replit 
Python :: selenium proxy python chrome 
Python :: brownie get active network 
Python :: create new thread python 
Python :: how to see the functions of a library in python 
Python :: heroku change python version 
Python :: python how to get script directory 
Python :: selenium close browser 
Python :: pandas to json without index 
Python :: get datatype of all columns pandas 
Python :: how to accept input as list pyhton 
Python :: virtualenv -p python3 
Python :: how to display qr code in python 
Python :: 1 day ago python datetime 
Python :: pyplot set x range 
Python :: django load model by name 
ADD CONTENT
Topic
Content
Source link
Name
5+7 =