What version of Python in implemented in Rhino 8?

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)
2 Likes