Filter() method in Python

The Filter() method is one of the most useful and inbuilt method in Python programming language. The filter() method is an iterator which takes two parameter, function and iterable_objects. Filter() Method: The filter method filters elements from given iterable_objects if any element from that object doesn’t satisfy the condition defined inside given function or return … Read more

Map() function in Python: Python Basics

Python Map function

Map() function is one of the useful functions in Python. In this article, we’re going to explore what is Map function and when you can use this function. Python map() function: A map function is also an iterable object. Basically, the Map function takes two parameters: one is a function and then the second is … Read more

Python Basic: Lists methods and operations (Basic Guide)

Hi coders, In this article, I’m gonna explain you Lists in Python. Basically we’re going to explore basic of lists in python and also we will explore methods and operation that you can perform on lists. Python Lists In python, lists are used to store data of different data types in ordered form. You can … Read more

Python Basic: String Methods and Operations (Basic Guide)

python string methods

Hey coders, today we are going to see basic string manipulation and methods in python programming language. What is String? In python, a string is a sequence of characters, where they are surrounded by double quotes(” “, or ‘ ‘). Anything between these quotes will be considered as a string, e.g: “My name is pk … Read more

Automation With Python Selenium (Browser Automation)

Automation With Python Selenium (GUIDE): Hey Learners, Today we’re back with interesting topic of Python Programming. In the real world, there are lots of repetitive nature of task that we’re doing again and again in same pattern. In the Python, We have a package called Selenium, Which helps us to automate some tasks that are … Read more

Exception Handling in Python: An Introduction(GUIDE)

Hey, Coders, Today, I’m going to explain Exception Handling in Python. In this article, I’m going to tell you that How you can Raise an Exception in Python and handle them to prevent your program from termination. What Is Exception ? During the program execution, Sometimes your programs terminated due to some unusual error occur, … Read more

Django Beginner Project – Random Password Generator

Hey Coders, In today’s article, We’re going to build a beautiful basic project in Django Framework. I think It will be one of the best project for all newbie beginners. So, If you just entered and have learned some basic things about Django then I think this Random Password Generator project would be best for … Read more

Web Scraping With BeautifulSoup in Python(GUIDE)

Web Scraping With BeautifulSoup 4 : In Python, If we want to gather data from someone’s website then we basically use APIs. But there are lot of websites, where they don’t have APIs. In such case, we can use scraping technique to scrap data from someone’s website. We can perform web scraping with BeautifulSoup Python … Read more

Sending Emails Using Python Script(GUIDE)

Hey Coders, Today’s going to be fun tutorial. Because Today, I’m going to give you A full fledged Guide that How To Send An Email using Python scripts. All the code and modules are explained below that will help you to sending emails using python. To send an Email in Python, First you need to … Read more

Classes in Python, constructors, Inheritance (Guide)

Classes In Python: Before Working and creating class in python, Let me give you a short description about Classes in Python. Basically, Classes is a blueprint of any object that you will be create. Example: Assume, you want to create a String variable object in Python for name field. Then you will be write code … Read more