Ads block

Banner 728x90px
Showing posts with label Python Programming Unit 1. Show all posts
Showing posts with label Python Programming Unit 1. Show all posts

Python IDE


Python IDE
IDE IDE stands for Integrated Development Environment is defined as a coding tool that helps to automate the process of editing, compiling, testing etc. in an…
Read more »

Introduction to Python


Python Introduction Python is a general purpose and high level programming language. Python is a popular programming language. It was created by "Guido …
Read more »

Type Conversion in Python


Type Conversion           The process of converting the value of one data type into another data type is called type conversion.            There are mainly …
Read more »

Expression and Statement


Expression         An expression is a combination of symbols that evaluates to a value. An expression is a combination of variables , operators , values,  su…
Read more »

Operator Precedence in Python


Operator Precedence in Python
Precedence       When an expression has two or more operators, we need to identify the correct sequence to evaluate these operators. This is because result o…
Read more »

Operators in python


Operators in python
Operator       Operators are used to perform operations on variable and values. Operators are the constructs which can manipulate the value of operands. Exampl…
Read more »

Boolean in Python


Boolean           Data type with one of the two built-in values, "True"  or "False" . Boolean objects that are equal to True are truthy …
Read more »

Dictionary in Python


Dictionary           Dictionary in Python is an unordered collection of data values, used to store data values like a dictionary which unlike other data type…
Read more »

Set in Python


Set         In Python set is an unordered collection of data type that is iterable, mutable and has no duplicate elements. The order of a element in a set is…
Read more »