Posts

Showing posts with the label python training in delhi

Regular Expression in Python

Image
In the early days of computing, text processing and text pattern matching was a huge challenge. There were no standards or pattern matching characters designed at that time. Matching text patterns in a bulk-sized file was an extremely difficult task at that time. Until in the 1950s, an American mathematician named  Stephen Kleene  invented  Regular Expressions  which entirely revolutionized text processing, pattern matching, and bulk data manipulation. The regular expression meta character called  Kleene Star (*) is named after him.   What is the Python Regular Expression? A Python regular expression is a sequence of meta characters, that defines a search pattern. We use these patterns in a string-searching algorithm to “find” or “find and replace” on strings. They are strings in which “what to match” is defined or written. The term “regular expressions” is frequently shortened to “regex” at some places. In this, we will learn the basi...

Features of Python

Image
What is Python ? Python is a programming language. Which can be used in any operating system, Python is having wide range of application from web development, scientific and mathematical computing to graphical interface. Python was discovered by Guido Van Rossum in 1980s and it was first announced in 1994 , it was named Python from the series of comedy Monty Python’s Flying Circus. There are many features of Python such as : Easy to learn Free and open source Portable High level Interpreted language Large standard library to solve common task Structured language Object oriented Easy to learn : Python is easy to learn as compared to other language like Java , C, C++, Javascript it is very easy to code in Python. Free and open source : Python is open source language, which means its source code is available to everyone, anyone can download it, change it, or use it. Python is free to download from its official website www.python.org Portable : There is no need ...

Data Analytic Matplotlib (Guide)

Image
Data visualization is an important part of Data Analysis . Matplotlib is the most popular data visualization module in python . Other module like Tensorflow uses matplotlib for visualization. Creating visualization refers to creating stuffs. Matplotlib is designed to be as usable as MATLAB, with the ability to use Python, and the advantage of being free and open-source. Matplotlib is designed with the philosophy that you should be able to create simple plots with just a few commands, or just one! If you want to see a histogram of your data, you shouldn’t need to instantiate objects, call methods, set properties, and so on; it should just work. History of Matplotlib: Matplotlib was originally written by  John D. Hunter , has an active development community, and is distributed under a  BSD-style license . Michael Droettboom was nominated as matplotlib’s lead developer shortly before John Hunter’s death in August 2012, and further joined by Thomas Caswell. Ma...