[ad8447]: / (1) PyTorch_HistoNet / util / print_pers.py

Download this file

7 lines (5 with data), 128 Bytes

1
2
3
4
5
def print_pers(strP, fileName):
fileH = open(fileName, "a")
print(strP)
fileH.write(strP + "\n")
fileH.close()