Posts

Showing posts with the label learn python

Introduction to Python Programming - coding india

Welcome to the exciting world of programming. This course is designed for beginners as well as Professionals.  Before diving into the concepts, let's discuss about fundamentals of Python and its applications. What is Python? Python is a widely used high-level programming language created by Guido van Rossum in 1991. It is a simple, general purpose, high level, and object-oriented programming language. Python is also an interpreted scripting language. Python is also known as multipurpose programming language because it can be used to create web applications, GUI, softwares, games etc. Python is widely used for Data Science, Machine Learning (ML) , AI (Artificial Intelligence) and deep learning. Python 2 vs Python 3 In most of the programming languages, whenever a new version releases, it supports the features and syntax of the existing version of the language, therefore, it is easier for the projects to switch in the newer version. However, in the case of Python, the two versions

What is Series in Pandas? Data Science full course in Hindi for free | Codin India

Image
  Series is one-dimensional labeled array in Python Pandas which is capable of holding data of any type i.e. integer, float, characters, etc. The axis labels are collectively called index. How Series can be Created? It can be created using list, numpy arrays, from dictionaries, from scaler objects, etc. Let us explore it one by one. Syntax:- Import pandas as pd Pd.Series(data, index, dtype) Where pd is pandas alias, Series is Function through which we create it Series, data is the data we are creating, index is index of data and dtype is type of the data.       1. Create Series from  Python List:- Pandas Series can be created by Python List. We can create python list and there after call Python’s Pandas Series function to convert List into Series. Let us understand it by Code:-  Explanation:- First we imported modules and created a Python's list (list1). After that we called Pandas Series Function to convert Python List into Series. Here we have not passed any index, It will take a

Max Min and Nested List in Python | Python programming | Codin India

Image
Hello friends!   Codin India   here and in today's post we are going to learn Python's inbuilt functions that is Min Max Nested List So, Let us understand it one by one:-  min():- Python has an inbuilt function min() which finds the minimum value of the given list, tuples or something. It first calculates the biggest number one by one and provides the minimum value of the list. Syntax :- min(array_name) Code :- list1 = [1,2,3,4,5,6] print(min(list1)) Output:- 1 Explanation:-  First we created list that has name list1 and then we created called Python's inbuilt function min() and print it. Let us understand it by code:- max():- Python has an inbuilt function min() which finds the minimum value of the given list, tuples or something. It first calculates the biggest number one by one and provides the minimum value of the list. Syntax:-   max(array_name) Code :- list1 = [1,2,3,4,5,6] print(max(list1)) Output:- 6 Explanation:-  First we created list that has name list1 and then