Ubuntu – language problems with python datetime %b interpreter
when I run the following script import matplotlib.pyplot as plt import datetime as dt date = dt.datetime.strptime('02-Jan-2008 10:09:00', '%d-%b-%Y %H:%M:%S') print(date) fig = plt.figure() date2 = dt.datetime.strptime('02-Jan-2008 10:09:00', '%d-%b-%Y %H:%M:%S') print(date2) in my anaconda python 3.8.13, I receive the following…