Category

Python

Python is an interpreted high-level general-purpose programming language. Python's design philosophy emphasizes code readability with its notable use of significant indentation.

Image

String Manipulation in Python

A string is nothing but a series of characters.

Read More

Image

List Manipulation and Comprehension in Python

The list is a versatile data type exclusive in Python.[1,”33”,44.44]

Read More

Image

Tuple manipulation in Python

Tuple is a sequence of data similar to list. But it is immutable.

Read More

Image

Set manipulation in Python

- Set is an unordered collection of items. It means no indexing

Read More

Image

Dictionary manipulation in Python

Dictionary manipulation

Read More

Image

Part 1: Function in Python

It is nothing but a group of related instructions to perform a particular task called function.

Read More

Image

Part 2: Function in Python

Function vs Module vs Library: 1. A group of lines with some name is called a function 2. A group of functions saved to a file , is called Module 3. A group of Modules is nothing but Library

Read More