firecircle opened this issue on Dec 10, 2020 ยท 26 posts
structure posted Tue, 03 May 2022 at 7:35 AM Forum Coordinator
Y-Phil is correct,
if you start your script with :
from __future__ import print_function
then your print line in py2 will be
print ('%s renamed to %s.' %(vu, actor.Name()))
which will also work in py3
Like Y-Phil, I think the f-string prints are better, but they only work in py3.
Locked Out