Python Property
Python has a great concept called property, which makes the life of an object oriented programmer much simpler. Before defining and going into details...
Python Objects and Class
Python is an object oriented programming language. Unlike procedure oriented programming, in which the main emphasis is on functions, object oriented programming stress on...
Python Operator Overloading
Python operators work for built-in classes. But same operator behaves differently with different types. For example, the + operator will, perform arithmetic addition on...
Python Generators
There was a lot of overhead in building an iterator in Python; we had to implement a class with__iter__() and __next__() method, keep track...
Python Condition
Python if...elif...else and Nested if
 Decision making is required when we want to execute a code only if a certain condition is satisfied. The if…elif…else statement...
Python while Loop
The while loop in Python is used to iterate over a block of code as long as the test expression (condition) is true. We...
Python Loop
The for loop in Python is used to iterate over a sequence (list, tuple, string) or other iterable objects. Iterating over a sequence is...
Install Sublime Text 3 Editor In Ubuntu
https://youtu.be/mzIk7qnFInU
Sublime Text is a cross-platform text and source code editor with a Python API. It is a sophisticated text editor for code, markup and...
Python Identifier and Keywords
Keywords
Keywords are the reserved words in Python. We cannot use a keyword as variable name, function name or any other identifier. They are used...
List of Keywords in Python
List of Keywords in Python
Keywords in Python programming language
False
class
finally
is
return
None
continue
for
lambda
try
True
def
from
nonlocal
while
and
del
global
not
with
as
elif
if
or
yield
assert
else
import
pass
break
except
in
raise
The above keywords may get altered in different versions of Python. Some extra might get added...
Building an FTP Password Cracker In Python
Python is probably the most widely used scripting language for hackers. This is primarily because it has some built-in modules and libraries that make...
Get the Geo Location of an IP Address Python
Geolocate an IP address based on input from the user. For this script, we will be using a bunch of Python modules to accomplish...
Download a complete Website using Python in 4 steps
One of the most viral news circulating on the internet is the Python Web Crawler, that crawls a website you ask it to and...