Make Your Python Life Easier With Icecream
I often confused about what I was printing when I debug in Python.
Example:
str1 = "Apple"
str2 = "Orange"
print(str1)
print(str2)
The output would be:
Apple
Orange
It is not easy to tell what variable I am printing. Well, it is in the above simple ...
tomokimemo.hashnode.dev2 min read
Amal Shaji
web + devtools = ❤️🔥
>>> a = "amalshaji" >>> print(f"{a=}") a='amalshaji'