Reset all the ram content in one clock

In the below module, I want to reset all the content of the memory to 0. I write values to the RAM and then in the middle of my code, now I need to reset all the values of the RAM to zero. How can I do that without writing zero to each element of… Read More Reset all the ram content in one clock

datetime reading a different format from the real value

I’m trying to reformat a datetime pattern on csv’s files: Original date format: DAY/MONTH/YEAR Expected Result: YEAR/MONTH/DAY rows = df[‘clock_now’] is: 22/05/2022 12:16 22/05/2022 12:20 22/05/2022 12:21 22/05/2022 12:44 22/05/2022 12:47 22/05/2022 12:47 22/05/2022 12:51 Here is my complete code: import pandas as pd import datetime filials= [ ‘base.csv’, ‘max.csv’ ] for filial in filials:… Read More datetime reading a different format from the real value