Python 2 Vs Python 3

Python 2.x and Python 3.x are two major releases of the python programming language. Python 2 was released in 2000 and now in 2020, it is no longer in development. It was easy to write code in Python 2 as compared to its prior versions. The developers of the Python programming language notice so many … Read more

Setup Python Development Environment With VSCode On Windows

Visual studio code (VS Code) is a free and open-source IDE that is developed by Microsoft. It is a lightweight IDE that has powerful features like smart code completion, code linting for potential errors, debugger, etc. You can set up VS code for development using Python programming language by installing python extension. In this article, … Read more

Best 7 Python IDEs And Code Editors

A code editor basically used to write and edit code it is usually lightweight and considered good for learning and small projects. Once you start writing code for larger applications you need to use an Integrated Development Environment (IDE). An IDE has so many good features including features like build automation, code linting, testing, debugging, … Read more

How to install Go in Ubuntu?

Go is a modern, open-source, statically typed, compiled programming language developed by Google. It is a cross-platform language available for Windows, Linux, macOS, etc. Sometimes it is also referred to as Golang because of the domain name golang.org. In this article, I will discuss how to install the Go programming language in Ubuntu. Features of … Read more

Escape sequences in Python

An escape sequence or escape character allows you to insert a special character in a string. For example, you can insert a new line in a string using \n character. The backslash \ is used before the character that you want to escape. List of escape characters in Python The following table shows you a … Read more

How to install Scikit-Learn on Ubuntu Linux?

Scikit-Learn is a free machine learning library for Python, it is best for working with complex data. It is designed to interoperate with NumPy and SciPy libraries. Scikit-Learn provides a higher-level interface for machine learning and features various classification, regression, and clustering algorithms. It can be combined with the Python web framework to build the … Read more

File handling in Python

File handling is the method of storing the data generated by a program in a file or taking the data of a file as input to the program. It is an integral part of most programming languages. Python provides built-in functions to perform file operations. Today in this article I will discuss different file operations in … Read more

Python List Comprehension

A python list can hold multiple different types of values in a single variable. In our previous article on Python list data type, we had discussed the Python lists, how to create them, and different operations that can be performed on them. Python list comprehension provides a shorter syntax to create lists. In this article, … Read more

How to install Python pip on Linux?

Python pip in Linux is a package management tool used to find, install, remove and list the packages from the Python Package Index (PyPI). In this article, we will discuss how to install pip on Linux for Python 3 and Python 2 on different distributions. If you have not installed Python yet on your Linux … Read more