Tag: Python
All the articles with the tag "Python".
-
Several Cool Things You Can Do with F-Strings in Python
3 min readF-strings are a powerful and easy-to-use way to format strings in Python.
-
Your Own Python Calendar
1 min readThe Python calendar module defines the Calendar class. This is used for various date calculations as well as TextCalendar and HTMLCalendar classes with their local subclasses, used for rendering pre formatted output.
-
Get the Most of Floats
1 min readFloats also have several additional methods useful in various scenarios
-
Format text paragraphs with textwrap
1 min readPython's textwrap module is useful for rearranging text, e.g. wrapping and filling lines.
-
Unicode Character Database at Your Hand
1 min readPython's self explanatory module called unicodedata provides the user with access to the Unicode Character Database and implicitly every character's properties.
-
Functional Particularities of Python
3 min readParadigms of functional programming as applied to Python
-
New interesting data structures in Python 3
5 min readtake a look at some data structures that Python 3 offers, but that are not available in Python 2
-
Keyword argument demystify
3 min readThere’s a lot of baffling among Python programmers on what exactly 'keyword arguments' are