Update test.py

This commit is contained in:
p53209761 2022-10-19 16:51:03 +08:00
parent 120982df55
commit f2f95a22a7
1 changed files with 5 additions and 5 deletions

10
test.py
View File

@ -5,13 +5,13 @@ import time
fake = Faker(locale="zh_CN")
def write_log(path, log):
def write_log(path, strr):
with open(file=path, mode="a", encoding="utf-8") as f:
if isinstance(log, str):
f.write(log)
if isinstance(strr, str):
f.write(strr)
if isinstance(log, list):
for line in log:
if isinstance(strr, list):
for line in strr:
f.write(line)