Python
Writing your own functions
There is a ton of built in functions such as str(), type() and so one and so forth. But you can as well define your own functions You can also define parameters for your functions. In the example below value is the parameter and can be passed when we call Read more…