Skip to content

Append() method is in-build Python method operating on list. Append method of python helps to add an object at the end of the existing list. It does not return the new list but instead modifies the original. Syntax of the Append() list.append(element) How Does Append() Method Works The method takes a single argument. element – an element to be added at the end of the listThe element can be numbers,… Read More »Python List Append() Method

Python List Append() Method

A List in Python is implement to store the sequence of various types of data. It is a collection data-type that is ordered and changeable. A list can have duplicate values as well. Here, Python has three methods to find the length of list. Methods to find Length of List in Python There are three methods that are used to find the length of the list in Python: len() Naive… Read More »How to Find Length of List in Python

How to Find Length of List in Python

Before making a list in Python, let’s understand about it. What is List? List is Python’s most flexible ordered collection object type. Unlike strings, lists can contain any sort of object: numbers, string, and even other lists. Lists are a useful tool for preserving a sequence of data and further iterating over it. The important characteristics of Python lists are: List is ordered collection of object and can be accessed… Read More »How to make a list in Python?

How to make a list in Python?

If you are writing any technical or mathematical content in Microsoft Word, then it is very much likely that it contains Greek alphabets or Greek letters. They are widely used in fields of science and engineering to demote various constants, values and phenomenon / particle. Greek Alphabets Greek alphabet has both capital and small versions. All the Greek alphabets finds it use in science and mathematics. However, unlike Latin based… Read More »Keyboard shortcut for Greek alphabet in Microsoft Word

Keyboard shortcut for Greek alphabet in Microsoft Word

This blog explained the steps to install Anaconda Python on Windows. Anaconda is the most popular, free and open-source distribution of Python and R Programming language. It is used for large-scale data processing, predictive analysis and scientific computing. The Anaconda distribution is used by over 15 million users and includes more than 1500 popular data-science packages. It comes with bunches of tools such as Sypder & Jupiter notebook. So lets… Read More »Installing Python using Anaconda

Installing Python using Anaconda

Data types in NumPy NumPy supports a wide variety of data types. It is given using an attribute dtype which is a short form of data type. Most of the array creator/initializer function needs this arguments. Althoug optional, it helps numpy to determine the type of data type that array will store. Use of dtype NumPy Some time it is beneficial to use smaller data type to save memory and… Read More »Dtype NumPy: List of Data Types in NumPy and its Ranges

Dtype NumPy: List of Data Types in NumPy and its Ranges

As you know, the basic building blocks of any programming language are variables and constants, using which we create a series of expressions. In order to, write an expression, we require operators and operands. Operators are the symbols that are used to perform a different computational task, while operands are the values (variables, constants, Python objects, etc.) on which we are performing operations. An operator is used to perform an… Read More »Operators & Operands in Python

Operators & Operands in Python

Variables Variables are names that given to data that we need to store and manipulate. Python is not ” statically type” i.e. no need to declare variables or their data types before using them. A variables is created the moment we first assign a value to it. #!/usr/bin/python age = 24 # An integer assignment salary = 10000.0 # A floating point name = “John” # A string print age… Read More »Variables & Data Types in Python

Variables & Data Types in Python

If your work include copying multiple items and pasting then you have come to the right place. This blog will tell you how to enable multiple clipboard in Windows using safe, secure and free software Autohotkey. Clipboard is the temporary memory where items that you copy (control + x) are saved. Windows by has only one clipboard. Multiple clipboard is new feature that has been added in Windows 10. You… Read More »Multiple Clipboard in Windows: Copy & paste multiple items with Autohotkey (freeware).

Multiple Clipboard in Windows: Copy & paste multiple items with Autohotkey (freeware).

If you do some repetitive tasks and wish if you could automate it. Then you have come to the right place. No more wasting time in doing mundane task when you can automate it with Autohotkey, the free Windows Automation tool. AutoHotkey is a free, powerful and versatile Window Automation tool that allows you to automate almost anything on your Windows PC. No need to spend money on Windows automation… Read More »Windows automation tool Autohotkey | Automate common task with Autohotkey |

Windows automation tool Autohotkey | Automate common task with Autohotkey |