Python: How to convert string to a datetime object
Converting a string to a datetime is needed to perform datetime comparisons and calculations. Converting a string to a datetime object is……
# Linux, Devops, Scripting, Cats and various things come to my mind
Converting a string to a datetime is needed to perform datetime comparisons and calculations. Converting a string to a datetime object is……
sometimes, you want a task to trigger not just when the server starts but also periodically. For example, you might want to regularly check……
A REST API (also known as RESTful API) is an application programming interface (API or web API) that conforms to the constraints of REST……
Assume the following scenario! you need quickly to share files with users, but you don't have the time to set a mechanism that will……
A short introduction to functional programming…
In real world nothing is perfect, there will be times that the dataset you have to work would be incomplete and values will missing, and……
What is opencv…
Regular expressions or regex for short, is a text pattern that can help match text; Python has built in support for regular expressions……
Python like many other languages has built-in functions to write files, to write a file we need first to open a file.…
The os module of Python provides an Operating System abstraction layer when we want to perform file operations, to delete a file in Linux……