Blog

intalling django  - Cover Image
General
intalling django

Django is a full-featured Python web framework for developing dynamic websites and applications. Using Django, you can quickly create Python web applications and rely on the framework to do a good dea

Introduction to Django
General
Introduction to Django

Django is a Python framework that makes it easier to create web sites using Python. Django takes care of the difficult stuff so that you can concentrate on .

File I/O
General
File I/O

The input Function The input([prompt]) function is equivalent to raw_input, except that it assumes the input is a valid Python expression and returns the evaluated result to you.

Object-oriented Programing
General
Object-oriented Programing

What Is Object-Oriented Programming in Python? Object-oriented programming is a programming paradigm that provides a means of structuring programs so that properties and behaviors are bundled into ind

Regular Expression
General
Regular Expression

A RegEx, or Regular Expression, is a sequence of characters that forms a search pattern. RegEx can be used to check if a string contains the specified search pattern.

Identifier
General
Identifier

Identifier is a name used to identify a variable, function, class, module, etc. The identifier is a combination of character digits and underscore. The identifier should start with a character or Unde

Exceptions
General
Exceptions

What is Exception? An exception is an event, which occurs during the execution of a program that disrupts the normal flow of the program's instructions. In general, when a Python script encounters a

lops
General
lops

A for loop is used for iterating over a sequence (that is either a list, a tuple, a dictionary, a set, or a string). This is less like the for keyword in other programming languages, and works more l

Functions, variable
General
Functions, variable

A function is a block of code which only runs when it is called. You can pass data, known as parameters, into a function. A function can return data as a result. A function is a mathematical relations

Python Dictionaries
General
Python Dictionaries

Dictionaries are used to store data values in key:value pairs. A dictionary is a collection which is ordered*, changeable and do not allow duplicates. Create and print a dictionary: thisdict = {