Python
A general-purpose language widely used for scripting, backends and data work. Batteries-included standard library with a large ecosystem.
How-to
Format a Date in Python
Turn a datetime into a string with strftime and parse strings back with strptime.
How-toMake a GET Request in Python
Fetch JSON from an API using the requests library, raising on error status codes.
How-toParse JSON in Python
Convert a JSON string into Python dicts and lists with the standard-library json module.
How-toReverse a String in Python
Reverse a string with the extended slice [::-1], the idiomatic one-liner in Python.