Python

[PY]Function(1) in Python

In Python, you can unpack dictionary to pass its value to a function parameter. In order to take value out of a dictionary

Read

[Py]Import datetime

In order to use a date in Python, you first need to import a module named `datetime`. The `datetime` module has various class types,

Read

[Py]String Interpolation

There are two existing ways to format Strings. One is string modulo operator(%) and the other is str.format(value). The former is old and the latter is relatively new

Read