I am new to working with the Python processor in ONE DATA. For debugging purposes, I added a few print()
statements. However, this
print("asdf")
print("foo")
print("bar")
result in the log output asdffoobar
in the processor log output. Even
print("asdf\n")
print("foo\n")
print("bar\n")
results in asdffoobar
.
Is there a way to not have all log/print output in a single line?