Python Programming
String Representations in Python — Understand repr() vs. str()
Know their usages and relationships
In a previous post, I talked about f-strings in Python. Briefly, f-strings are known as formatted string literals, which allow us to write more concise code to format strings in the way we want. Let’s take a quick refresh on the f-strings. In…