#functional-programming
Read more stories on Hashnode
Articles with this tag
def greet(msg="Good morning!", name): return "Hi! " + name + ', ' + msg print(greet("John")) # Syntax Error print(greet("Mary", "How do you...
Introduction in this article, I will be talking about pure vs impure function, and why it is a good practice to always try to use pure function if we...