Python
Introduction to Python Programming
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.
Python Variables, Objects and Attributes
Variables and objects are fundamental entities in python. And in python variables are references to objects.
Mutable vs Immutable Objects in Python
Python treats every thing is an object. And objects in a python can be either mutable or immutable.
Integer and Float Numbers in Python
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.
Strings and Character Data in Python
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.
Why Hello World
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.
A Quick Tour of Python Language Syntax
In this article you will learn about python programming syntax. Syntax in programming language is set of rules which defines how python programm executes.
How to use functions in python
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.
Python for Loop explained with examples
In this article you will learn how to create loops in python. Loops are code statement that iterate over a given sequences.
Python Conditional Statements: if, elif and else
In this article you will learn about conditional statements in python. Python supports if, elif and else statements.
Python Classes and Objects - Object Oriented Programming
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.
An example of Python DateTime, TimeDelta and Strftime(Format)
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.
Date Formatting using Python Strptime
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.
Python | datetime.timedelta() function
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.
Python HTTP Client Request - GET, POST
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.
Advance Python Bot to Increase Website Traffic using Selenium
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.
Send Bulk Email From Python Using Google Cloud Console Gmail API
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.
Automate Facebook Post to Groups using Graph API and Python
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.
Resize Image using Python for Deep Learning Model VGG19
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.