datetime format for processing a CSV file [closed]
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 3 days ago . Improve this question I am processing a CSV file. So the format in my CSV file is: 2020-10-26T03:45:00Z (example). How do I read this format to process the entire Excel sheet? for eg: for a date, we can time = datetime.strptimerow[0],'%Y/%d/%m') How can I use it similarly for my given format? here