Odpowiedzi:
file.write(f"{var1}\n")
Możesz to zrobić na dwa sposoby:
f.write("text to write\n")
lub, w zależności od wersji Python (2 lub 3):
print >>f, "text to write" # Python 2.x
print("text to write", file=f) # Python 3.x
Możesz użyć:
file.write(your_string + '\n')
file.write(f"my number is: {number}\n")
jest w porządku i czytelny.
Jeśli używasz go intensywnie (dużo zapisanych linii), możesz podklasować „plik”:
class cfile(file):
#subclass file to have a more convienient use of writeline
def __init__(self, name, mode = 'r'):
self = file.__init__(self, name, mode)
def wl(self, string):
self.writelines(string + '\n')
Teraz oferuje dodatkową funkcję wl, która robi to, co chcesz:
fid = cfile('filename.txt', 'w')
fid.wl('appends newline charachter')
fid.wl('is written on a new line')
fid.close()
Może brakuje mi czegoś takiego jak różne znaki nowej linii (\ n, \ r, ...) lub że ostatni wiersz jest również zakończony nową linią, ale to działa dla mnie.
return None
tym przypadku nie jest to konieczne, ponieważ po pierwsze nie jest to potrzebne, a po drugie, każda funkcja Pythona None
jest domyślnie zwracana , gdy nie ma return
instrukcji.
mógłbyś:
file.write(your_string + '\n')
jak sugeruje inna odpowiedź, ale po co używać konkatenacji ciągów (powolna, podatna na błędy), gdy można wywoływać file.write
dwa razy:
file.write(your_string)
file.write("\n")
Zauważ, że zapisy są buforowane, więc sprowadza się to do tego samego.
file_path = "/path/to/yourfile.txt"
with open(file_path, 'a') as file:
file.write("This will be added to the next line\n")
lub
log_file = open('log.txt', 'a')
log_file.write("This will be added to the next line\n")
Notatka, file
nie jest obsługiwana Python 3
i została usunięta. Możesz zrobić to samo z open
wbudowaną funkcją.
f = open('test.txt', 'w')
f.write('test\n')
O ile nie zapisujesz w plikach binarnych, użyj print. Poniżej przykład dobry do formatowania plików csv:
def write_row(file_, *columns):
print(*columns, sep='\t', end='\n', file=file_)
Stosowanie:
PHI = 45
with open('file.csv', 'a+') as f:
write_row(f, 'header', 'phi:', PHI, 'serie no. 2')
write_row(f) # newline
write_row(f, data[0], data[1])
Uwagi:
'{}, {}'.format(1, 'the_second')
- https://pyformat.info/ , PEP-3101*columns
w definicji funkcji - wywołuje dowolną liczbę argumentów do wyświetlenia - patrz pytanie o * args i ** kwargsKolejne rozwiązanie, które pisze z listy przy użyciu fstring
lines = ['hello','world']
with open('filename.txt', "w") as fhandle:
for line in lines:
fhandle.write(f'{line}\n')
Oto rozwiązanie, które wymyśliłem, próbując rozwiązać ten problem dla siebie, aby systematycznie produkować \ n jako separatory. Pisze przy użyciu listy ciągów, gdzie każdy ciąg jest jedną linią pliku, jednak wydaje się, że może on również działać dla ciebie. (Python 3. +)
#Takes a list of strings and prints it to a file.
def writeFile(file, strList):
line = 0
lines = []
while line < len(strList):
lines.append(cheekyNew(line) + strList[line])
line += 1
file = open(file, "w")
file.writelines(lines)
file.close()
#Returns "\n" if the int entered isn't zero, otherwise "".
def cheekyNew(line):
if line != 0:
return "\n"
return ""
with open(path, "w") as file: for line in strList: file.write(line + "\n")
? W ten sposób możesz usunąć całą pracę z listą, sprawdzić i mieć tylko 3 linie.