Python is considered as one of the most popular and in-demand programming language. It is a powerful high-level, interpreted, interactive, and object-oriented scripting language created by Guido Van Rossum in late 1980’s.
Variables and objects are fundamental entities in python. And in python variables are references to objects.
Python treats every thing is an object. And objects in a python can be either mutable or immutable.
Python supports different type of numbers like integer, float and complex numbers. And by the presence of decimal points these numbers are separated from each other.
Every thing in python is an object and we can say that string is an object that contain sequence of character data. We can also perform different operaions on string.
The purpose of writing hello world in any programming language is not to find the simplest form of code. Its actually to learn out the development environment.
In this article you will learn about python programming syntax. Syntax in programming language is set of rules which defines how python programm executes.
In this article you will learn how to declate and define python functions. A python function is a set of statements that can or can't take arguments and return some results.
In this article you will learn how to create loops in python. Loops are code statement that iterate over a given sequences.
In this article you will learn about conditional statements in python. Python supports if, elif and else statements.
Python is an object oriented programming language. And in python everthing is an object. A class is like an object constructor or blue print for creating objects.
In this article you will learn how to use date, datetime, timedelta and strftime in python. I am going to show you these concepts by usign an example.
In this article you will learn how to convert dates into different string formats. Date formatting is one of the key concept when playing with dates in ptyhon.
In this article you will learn how to play with timedelta function in python. To represent difference between two dates or time we use timedelta function provided by python.
In this article you will learn how to play http request with python. There are many libraries to make http request, but requests are the most useful and simple library.
In this article, you will see how to increase your website or blog traffic using a python bot. We are going to use Python Selenium Web Driver to open web browsers like Chrome, Firefox, etc.
In this article, you will learn how to create Gmail Bot to send bulk emails using a python script. This bot uses Google Cloud Console Gmail API to send emails in bulk.
In this article, you will learn how to create a Facebook Bot to post automatically on groups using Facebook Graph API and Python Programming Language.
In this article, you will learn how to read images from the current working directory and resize that image into input shape (224,224,3) for the deep learning model VGG19.