Hi.
I’ve got (simple?) question?
Whar version of Python are we using “Python 3 Script”?
Is it 3.7 (or previous) or 3.8 (or later)?
Hi.
I’ve got (simple?) question?
Whar version of Python are we using “Python 3 Script”?
Is it 3.7 (or previous) or 3.8 (or later)?
Python 3.9
You can always check it from within a script as well:
import sys
print(sys.version)