Posts

Showing posts with the label python programming

Introduction to Python Pandas | Data science full course with Python in Hindi

Image
   In the Introduction to   Data Science  post, we discussed about   Roadmap for Data Science . In which we learned about Pandas in Python. So, lets jump into Pandas introduction. What is Pandas in Python? Introduction to Pandas in Python are given below:- Pandas is a fast, powerful, flexible and easy to use open source Data Analysis and manipulation tool, built with Python Programing. Pandas is Python package that is widely used for Data Science/ Data Analysis and machine learning tasks. It is used for manipulation of 1-D Arrays as well as 2-D arrays.  It is one of the most popular Data Wrangling packages of Python Programming. Key features of Pandas in Python and Why should we learn Pandas? We should learn Pandas because it provides us magnificent Data operations in easy and advanced way. There are some key features of Pandas are given below:- Pandas has Fast and efficient DataFrame with default and customized indexing. Pandas provides us tools for Data Loading from momory and differ

Roadmap for Data Science | Data Science fyll course in hindi | Data science 2021

Image
  hey friend welcome to our channel. We will learn Data Science with Python in Hindi.  In which we will learn the following courses:- Numy Pandas MatPlotlib Kaggle SciPy Python Data Operations Python Data Cleansing Python Processing CSV Data Python processing JSON Data Python Processing XLS Data Python Relational Databases Python NoSQL Databases Python Data wrangling Python Data Aggregation Python Reading HTML Pages Python Processing Unstructured Data Python chart Properties Python chart styling Python Box Plots Python heat maps Python Box Plots Python Scatter Plots Python Bubble Charts Python 3D charts Python Geographical Data Python Graph Data and many more and all are in hindi. This is channel for Indians by Indians. Kindly Subscribe to our Youtube channel -  Codin India

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