python read and delete line from file
with open("yourfile.txt", "r") as f:
lines = f.readlines()
with open("yourfile.txt", "w") as f:
for line in lines:
if line.strip("n") != "nickname_to_delete":
f.write(line)
python read and delete line from file
with open("yourfile.txt", "r") as f:
lines = f.readlines()
with open("yourfile.txt", "w") as f:
for line in lines:
if line.strip("n") != "nickname_to_delete":
f.write(line)
python remove lines of string
output_String = input_String.split("n", 1)[1]
#this will get rid of the first line and keep the rest
output_String = input_String.split("n", 3)[1]
# this will get rid of the first 3 lines ecept the 2nd line and keep everything else
output_String = input_String.split("n", 4)[0]
# this will get rid of the first 4 lines ecept the first and keep any lines after the 4th line if there are any
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us