Things I like about python (living blog as I update it time to time)
Keyword (Named) Arguments for functions
No need to follow the order of the arguments while calling a function
def concate(str1, str2):
print(str1)
print(str2)
# I can pass str2 first, then str1
concate(str2="2nd", str1="1st")
#if I don't ...
meaningfulcareerlife.hashnode.dev1 min read