Python Operators

Submitted by moazkhan on

In this tutorial you will learn:

  • Python Operators
  • Assignment Operators
  • Arithmetic Operators
  • Comparison Operators
  • Logical Operators

Python Operators

Operators are considered as the foundation of any programming language. Operators are symbols which can control the value of operands by performing different tasks based on the type of symbol.

Assignment Operators

Python Dictionary

Submitted by moazkhan on

In this tutorial you will learn:

  • Python Dictionary
  • Adding elements to a Dictionary
  • Accessing elements of a Dictionary
  • Removing elements from a Dictionary

Python Dictionary

Dictionary is a resource that that lists words and their meaning. So Dictionary data type in Python follow a similar concept, they define a key and a value. They are declared using curly brackets. Dictionaries in Python are mutable it means the values in a dictionary can be changed and they are also indexed but unordered.

Python Boolean

Submitted by moazkhan on

In this tutorial you will learn:

  • Boolean in Python
  • Boolean expressions
  • Importance of Boolean in programming.

Boolean in Python

Boolean is perhaps one of the most simple yet the most powerful data type not only in Python but in other programming languages as well. Boolean data type has either a value of True or a value of False. Even the keywords used in Python to define Booleans are True and False.

Simple Internship/Job Portal

Submitted by Nikhil_B on
We have developed the job-portal. This portal can handle data of Recruits (Several Companies) who are looking for suitable candidates for their vacancies.This portal will be most useful for Consultants for searching of matching job with jobseekers etc.The classic Functionality of this Application focuses on data storage. However, the means to retrieve and analyze data, to extract, transform and

List of Free PHP Projects with Thesis Documentation and Source Code

Submitted by admin on
Download for free a list of PHP Projects with source code here. For several years, sourcecodester.com has compiled a lot of PHP projects coming from programmers from different countries who willingly share their source code so other programmer like you can benefit from it. Previously we also compiled a list of free projects with source code to be used in your thesis projects. If you want to visit

Python Strings

Submitted by moazkhan on

In this tutorial you will learn:

  • Strings in Python
  • Immutable and Mutable in Python
  • Joining two Strings
  • String Slicing
  • Finding length of a String

Strings in Python

In the previous tutorial we learned what variables are and how Python deals with variables. In this tutorial we will start by learning the details and usage of String type variable in Python.