Right now I was trying to understand what was wrong with my code, since I was not able to print something.
After seeking 'print-by-print', I found my error and I think it may be a Bug...
I'm using Jupyter notebook / Python=3.9. It was something like:
>>> print = ('Check exit for this loop.')
By mistake an "=" was kept by me and the command 'print' worked as a variable.
If I run isolately print, returns its content as a variable.
>>>print
'Check exit for this loop.'
I supposed that 'print' was a reserved word and due the error on my code I learned now that it is not the case.