When running abaqus nogui python script I would like to output the status of the script to the terminal. But when I do, e.g.:
print("Opening ODB...")
print("Plotting images...")
I also tried:
print "Opening ODB..."
print "Plotting images..."
and
sys.stdout.write("Opening ODB...")
sys.stderr.write("Plotting images...")
Nothing gets outputted to the terminal. Despite this my code runs fine and does everything it supposed to do.
Does anyone have any ideas how to solve this issue?