cx_Freeze converted GUI-app (tkinter) crashes after pressing plot button

I’ve been dealing with this for days now and hope to find some help. I developed a GUI-application with imported modules tkinter, numpy, scipy, matplotlib, which runs fine in python itself. After having converted to an exe everything works as expected, but NOT the matplotlib section. When I press my defined plot button, the exe simply closes and doesn’t show any plots.
So I thought to make a minimal example, where I simply plot a sin-function and I’m facing the same issue:
Works perfect in python, when converting it to an exe it crashes when pressing the plot button. Here is the minimal example:

String exact match

I have a string in which the word “LOCAL” occurs many times. I used the find() function to search for this word but it returns another word “Locally” as well. How can I match the word “local” exactly?

Pandas: Datetime Improperly selecting day as month from date

I’m working with some datetime data in a dataframe. It’s in a format day/month/year Ex: Date —————- 27/06/2021 00:00 27/06/2021 00:00 30/06/2021 00:00 30/06/2021 00:00 30/06/2021 00:00 18/06/2021 00:00 26/06/2021 00:00 28/06/2021 00:00 28/06/2021 00:00 27/06/2021 00:00 28/06/2021 00:00 30/06/2021 00:00 12/06/2021 00:00 28/06/2021 00:00 I want to extract the month and year, so I … Read more