Python
Python Date
Python is very useful in case of Date and Time. We can easily retrieve current date and time using Python. Retrieve Time To retrieve current…
Python Exception
Exception can be said to be any abnormal condition in a program resulting to the disruption in the flow of the program. Whenever an exception…
Python Moudules
Modules are used to categorize code in Python into smaller part. A module is simply a file, where classes, functions and variables are defined. Grouping…
Python Files I/O
Python can be used to read and write data. Also it supports reading and writing data to Files. “print” statement: “print” statement is used to…
Python Functions
A Function is a self block of code. A Function can be called as a section of a program that is written once and can…
Python Dictionary
Dictionary is an unordered set of key and value pair. It is an container that contains data, enclosed within curly braces. The pair i.e., key…
Python Tuple
A tuple is a sequence of immutable objects, therefore tuple cannot be changed. The objects are enclosed within parenthesis and separated by comma. Tuple is…
Python List
1).Python lists are the data structure that is capable of holding different type of data. 2).Python lists are mutable i.e., Python will not create a…
PYTHON STRINGS
Strings are the simplest and easy to use in Python. String pythons are immutable. We can simply create Python String by enclosing a text in…
Python Pass
When you do not want any code to execute, pass Statement is used. It is same as the name refers to. It just makes the…