Functional Programming in Python

Functional programming is a programming paradigm that treats computation as the evaluation of mathematical functions, avoiding changes of state and mutable data. The main idea of functional programming is “what to solve”.

Master Python File Handling In Just A Few Hours!

master-python-file-handling-just-few-hours

File handling is essential for programmers as it allows user to perform operations on file such as read, write, append etc. File handling in python is super easy and it is important in any programming language because it stores the text data that can be used by programmers or program.

Python Math Module With Examples

python-math-module-with-examples

In this blog post, we are going to discuss about python math module that plays vital role in computing mathematical problems. math() module is the python built-in module provides access to the mathematical functions defined by the C standard. We will be discussing some important mathematical functions provided by math module one by one.

Debugging in Python | pdb module

debugging-python-pdb-module

Debugger is a program that helps us to find what is going in our program. You can use debugger to execute each line of code, print variables in each step, break execution at any line, again start execution, stop execution and repeat same steps until you find the bug in the program.