Hi
I got this:
C:>python
Python 3.10.0 (tags/v3.10.0:b494f59, Oct 4 2021, 19:00:18) [MSC v.1929 64 bit (AMD64)] on win32
Type “help”, “copyright”, “credits” or “license” for more information.
locale.setlocale(locale.LC_ALL, ‘de_DE’)
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘locale’ is not defined. Did you mean: ‘locals’?
And:
datetime.datetime.now().strftime(‘%d. %B %Y’)
Traceback (most recent call last):
File “”, line 1, in
NameError: name ‘datetime’ is not defined
Something wrong in my Python version? Could it be possible, that there’s no datetime module at all in my settings?
Kalle