All in One Offer! | Access Unlimited Courses in any category starting at just $29. Offer Ends in:

Browse Library

  • Business Solutions
  • Become an Instructor
  • 0
    Shopping Cart

    Your Cart is empty. Keep shopping to find a course!

    Browse Courses
Get Unlimited Learning Access
$29
5 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
Subscribe to Learnfly’s top courses
Get this course, plus 11,000+ of our top-rated courses for one year with Go Annually Plan.
$348 $244 a year Save 30%
5 days left at this price!
30-Day Money-Back Guarantee

This plan includes

  • Instant access to 11,000+ online courses
  • Play & Pause Course Videos
  • HD Video Recorded Lectures
  • Learn on Mobile/PC/Tablet
  • Quizzes and Real Projects
  • Lifetime Course Certificate
  • Instructor Chat Support
  • Cancel Plan Anytime
$29
$244
  • Python Libraries - Pandas, Matplotlib, Numpy
  • Python Programming Language
  • Basic Data Science
  • Data Analytics Projects solved with Python
  • All projects are Solved, and available with Python Source Codes files & dataset files
  • These projects can be used in Resume/CV, college submission

In this course, we have uploaded 8 Data Analytics Projects, solved with Python.

These projects can used if you are looking for a starting level job as a Data Analyst.

If you are a student, you can use these projects to submit in college/institute.

The source codes and datasets files are available to download.

All the projects are created with a very easy explanation.

We have mainly used the popular Python Pandas Library, along with Matplotlib to solve these projects.

 

Kindly subscribe 'Data Science Lovers' on YouTube and show your support.

To buy our Data Analyst Study Material , you can mail us at datasciencelovers@gmail.com

 

The projects are :

  • Project 1 - Weather Data Analysis

  • Project 2 - Cars Data Analysis

  • Project 3 - Police Data Analysis

  • Project 4 - Covid Data Analysis

  • Project 5 - London Housing Data Analysis

  • Project 6 - Census Data Analysis

  • Project 7 - Udemy Data Analysis

  • Project 8 - Netflix Data Analysis

     

Some basic examples of commands used in these projects are :

 

* head() - It shows the first N rows in the data (by default, N=5).

* shape - It shows the total no. of rows and no. of columns of the dataframe

* index - This attribute provides the index of the dataframe

* columns - It shows the name of each column

* dtypes - It shows the data-type of each column

* unique() - In a column, it shows all the unique values. It can be applied on a single column only, not on the whole dataframe.

* nunique() - It shows the total no. of unique values in each column. It can be applied on a single column as well as on the whole dataframe.

* count - It shows the total no. of non-null values in each column. It can be applied on a single column as well as on the whole dataframe.

* value_counts - In a column, it shows all the unique values with their count. It can be applied on a single column only.

* info() - Provides basic information about the dataframe.* size - To show No. of total values(elements) in the dataset.

* duplicated( ) - To check row wise and detect the Duplicate rows.

* isnull( ) - To show where Null value is present.

* dropna( ) - It drops the rows that contains all missing values.

* isin( ) - To show all records including particular elements.

* str.contains( ) - To get all records that contains a given string.

* str.split( ) - It splits a column's string into different columns.

* to_datetime( ) - Converts the data-type of Date-Time Column into datetime[ns] datatype.

* dt.year.value_counts( ) - It counts the occurrence of all individual years in Time column.

* groupby( ) - Groupby is used to split the data into groups based on some criteria.

* sns.countplot(df['Col_name']) - To show the count of all unique values of any column in the form of bar graph.

* max( ), min( ) - It shows the maximum/minimum value of the series.

* mean( ) - It shows the mean value of the series.

  • Beginners Friendly Projects - Required only basic Python language knowledge
  • You can use Jupyter notebook, Google Colab etc to run the python code
  • All datasets & source codes are available to download with this course
  • This course is for beginners as well as intermediate level ... You will enjoy it
  • Beginners looking for job as a Data Analyst
  • Students searching for projects to submit in college/institute
  • Anyone interested in Data Science and Data Analytics
View More...
  • Section 1 : Python Data Analytics Projects 16 Lectures 00:00:12

    • Lecture 1 :
    • Project 1 - Weather Data Analysis Preview
    • In this lecture, you will learn how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python. It is a project of Data Analysis with Python or you can say, Data Science with Python. The commands that we used in this project : * head() - It shows the first N rows in the data (by default, N=5). * shape - It shows the total no. of rows and no. of columns of the dataframe * index - This attribute provides the index of the dataframe * columns - It shows the name of each column * dtypes - It shows the data-type of each column * unique() - In a column, it shows all the unique values. It can be applied on a single column only, not on the whole dataframe. * nunique() - It shows the total no. of unique values in each column. It can be applied on a single column as well as on the whole dataframe. * count - It shows the total no. of non-null values in each column. It can be applied on a single column as well as on the whole dataframe. * value_counts - In a column, it shows all the unique values with their count. It can be applied on a single column only. * info() - Provides basic information about the dataframe. -------------------------------------------- Q. 1) Find all the unique 'Wind Speed' values in the data. Q. 2) Find the number of times when the 'Weather is exactly Clear'. Q. 3) Find the number of times when the 'Wind Speed was exactly 4 km/h'. Q. 4) Find out all the Null Values in the data. Q. 5) Rename the column name 'Weather' of the dataframe to 'Weather Condition'. Q. 6) What is the mean 'Visibility' ? Q. 7) What is the Standard Deviation of 'Pressure' in this data? Q. 8) What is the Variance of 'Relative Humidity' in this data ? Q. 9) Find all instances when 'Snow' was recorded. Q. 10) Find all instances when 'Wind Speed is above 24' and 'Visibility is 25'. Q. 11) What is the Mean value of each column against each 'Weather Condition ? Q. 12) What is the Minimum & Maximum value of each column against each 'Weather Condition ? Q. 13) Show all the Records where Weather Condition is Fog. Q. 14) Find all instances when 'Weather is Clear' or 'Visibility is above 40'. Q. 15) Find all instances when : A. 'Weather is Clear' and 'Relative Humidity is greater than 50' or B. 'Visibility is above 40'
    • Lecture 2 :
    • Project 2 - Cars Data Analysis
    • In this lecture, you will learn how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python. It is a project of Data Analysis with Python or you can say, Data Science with Python. The commands that we used in this project : * import pandas as pd -- To import Pandas library * pd.read_csv - To import the CSV file in Jupyter notebook * head() - It shows the first N rows in the data (by default, N=5) * shape - It shows the total no. of rows and no. of columns of the dataframe * df.isnull( ).sum( ) - It detects the missing values from each column of the dataframe. * fillna() - To fill the null values of a column with some particular value * value_counts - In a column, it shows all the unique values with their count. It can be applied to a single column only. * isin() - To show all records including particular elements * apply() - To apply a function along any axis of DF ------------------------------------------------------ Q. 1) Instruction ( For Data Cleaning ) - Find all Null Values in the dataset. If there is any null value in any column, then fill it with the mean of that column. Q. 2) Question ( Based on Value Counts )- Check what are the different types of Make are there in our dataset. And, what is the count (occurrence) of each Make in the data ? Q. 3) Instruction ( Filtering ) - Show all the records where Origin is Asia or Europe. Q. 4) Instruction ( Removing unwanted records ) - Remove all the records (rows) where Weight is above 4000. Q. 5) Instruction ( Applying function on a column ) - Increase all the values of 'MPG_City' column by 3.
    • Lecture 3 :
    • Project 3 - Police Data Analysis
    • In this lecture, you will learn how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python. It is a project of Data Analysis with Python or you can say, Data Science with Python. The commands that we used in this project : * import pandas as pd -- To import Pandas library * pd.read_csv - To import the CSV file in Jupyter notebook * head() - It shows the first N rows in the data (by default, N=5) * df.isnull( ).sum( ) - It detects the missing values from each column of the dataframe. * df.drop(‘Col_name’ ) - To drop a column from dataframe. * value_counts - In a column, it shows all the unique values with their count. It can be applied on a single column only. * df.groupby(‘Col_1’)[‘Col_2’] .sum( ) - To create groups - Two Keys – Apply on Col_2 grouped by Col_1. * df['Column_name'].map( { old1:new1 , old2:new2} ) – Change the all values of a column from old to new. We have to write for all values of column otherwise Nan will appear. * df['Column_name'].mean() - To show Mean value of a column. * df.groupby('Column_1').Column_2.describe() - To create groups based on Column1 and show statistics summary based on Column2. ....................................................................... Q. 1) Instruction ( For Data Cleaning ) - Remove the column that only contains missing values. Q. 2) Question ( Based on Filtering + Value Counts ) - For Speeding , were Men or Women stopped more often ? Q. 3) Question ( Groupby ) - Does gender affect who gets searched during a stop ? Question ( mapping + data-type casting ) Q. 4) Question ( mapping + data-type casting ) - What is the mean stop_duration ? Q. 5) Question ( Groupby , Describe ) - Compare the age distributions for each violation.
    • Lecture 4 :
    • Project 4 - Covid-19 Data Analysis
    • In this lecture, a tiny data set related to the Covid-19 pandemic is taken and analysed in a very Easy To Understand (ETU) language. Here, you will learn how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python. The commands that we used in this project : * import pandas as pd -- To import Pandas library * pd.read_csv - To import the CSV file in Jupyter notebook * df.count() - It counts the no. of non-null values of each column. * df.isnull().sum() - It detects the missing values from the dataframe. * import seaborn as sns - To import the Seaborn library. * import matplotlib.pyplot as plt - To import the Matplotlib library. * sns.heatmap(df.isnull()) - It will show the all columns & missing values in them in heat map form. * plt.show() - To show the plot. * df.groupby(‘Col_name’) - To form groups of all unique values of the column. * df.sort_values(by= ['Col_name'] ) - Sort the entire dataframe by the values of the given column. * df[df.Col_1 = = ‘Element1’] - Filtering – We are accessing all records with Element1 only of Col_1. ....................................................................... Q. 1) Show the number of Confirmed, Deaths and Recovered cases in each Region. Q. 2) Remove all the records where the Confirmed Cases is Less Than 10. Q. 3) In which Region, maximum number of Confirmed cases were recorded ? Q. 4) In which Region, minimum number of Deaths cases were recorded ? Q. 5) How many Confirmed, Deaths & Recovered cases were reported from India till 29 April 2020 ? Q. 6-A ) Sort the entire data wrt No. of Confirmed cases in ascending order. Q. 6-B ) Sort the entire data wrt No. of Recovered cases in descending order.
    • Lecture 5 :
    • Project 5 - London Housing Data Analysis
    • In this lecture, the London Housing Data is analyzed in a very Easy To Understand (ETU) language. Here, you will learn how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python. The commands that we used in this project : * import pandas as pd -- To import Pandas library * pd.read_csv - To import the CSV file in Jupyter notebook * df.count() - It counts the no. of non-null values of each column. * df.isnull().sum() - It detects the missing values from the dataframe. * import seaborn as sns - To import the Seaborn library. * import matplotlib.pyplot as plt - To import the Matplotlib library. * sns.heatmap(df.isnull()) - It will show the all columns & missing values in them in heat map form. * plt.show() - To show the plot. * df.dtypes - To show the datatype of each column. * pd.to_datetime(df.Date_Time_Col) - Converts the data-type of Date-Time Column into datetime[ns] datatype. * df.Time_Col.dt.year - Creating a new column with only year values * df.Time_Col.dt.month - Creating a new column with only month values. * df.insert( index , ‘new_column_name’, new_column_values) - To insert a New column at a particular position with values in it. * df.drop(['Col_name'] , axis=1 , inplace = True) - To drop a column from the dataframe permanently. * df.groupby(‘Col_name’) - To form groups of all unique values of the column. * df[df.Col_1 = = ‘Element1’] - Filtering – We are accessing all records with Element1 only of Col_1. * df.groupby(‘Col_1’)[‘Col_2’] .mean( ) - To create groups - Two Keys – Apply on Col_2 grouped by Col_1. ----------------------------------------------------- Q. 1) Convert the Datatype of 'Date' column to Date-Time format. Q. 2) Add a new column ''year'' in the dataframe, which contains years only. Q. 2-B) Add a new column ''month'' as 2nd column in the dataframe, which contains month only. Q. 3) Remove the columns 'year' and 'month' from the dataframe. Q. 4) Show all the records where 'No. of Crimes' is Zero. And, how many such records are there ? Q. 5) What is the maximum & minimum 'average_price' per year in england ? Q. 6) What is the Maximum & Minimum No. of Crimes recorded per area ? Q. 7) Show the total count of records of each area, where average price is less than 100000.
    • Lecture 6 :
    • Project 6 - Census Data Analysis
    • In this lecture, India Census 2011 data is analyzed in a very Easy To Understand (ETU) language. Here, you will learn about the python commands & how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python commands. The commands that we used in this project : * import pandas as pd -- To import Pandas library * pd.read_csv - To import the CSV file in Jupyter notebook * style.hide_index( ) - To hide the index of the dataframe. * style.set_caption('Description of the dataframe') - To give a caption to the dataframe. * isin( ) - To show all records including particular elements. * groupby(‘Col_1’)[‘Col_2’] .sum( )[‘value’] - GroupBy – Two Keys – Apply on Col_2 grouped by Col_1. * df[df.Col_1 == 'Element1']['Col_2'] - Filtering - Filter the records of the dataframe wrt to Element1 of Col1 and then showing results of Col2 only. * set_index( ‘Col_Name’ ) - To set any column of a DF as an index. * add_prefix(‘value_’) - To add prefix to the column name. * add_suffix(‘_value’) - To add suffix to the column name. ....................................................................... Q. 1) How will you hide the indexes of the dataframe. Q. 2) How can we set the caption / heading on the dataframe. Q. 3) Show the records related with the districts - New Delhi , Lucknow , Jaipur. Q. 4) Calculate state-wise : A. Total number of population. B. Total no. of the population with different religions. Q. 5) How many Male Workers were there in Maharashtra state ? Q. 6) How to set a column as index of the dataframe ? Q. 7-A) Add a Suffix to the column names. Q. 7-B) Add a Prefix to the column names.
    • Lecture 7 :
    • Project 7 - Udemy Data Analysis
    • In this video lecture, Udemy Courses Dataset is analyzed in a very Easy To Understand (ETU) language. Here, you will learn about the python commands & how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python functions/commands. The commands that we used in this project : * import pandas as pd -- To import Pandas library. * pd.read_csv - To import the CSV file in Jupyter notebook. * head() - It shows the first N rows in the data (by default, N=5). * unique( ) - It shows the all unique values of the column. * value_counts - In a column, it shows all the unique values with their count. It can be applied to a single column only. * df[df.Col_1 = = ‘Element1’] - Filtering – We are accessing all records with Element1 only of Col_1. * df.sort_values(‘Col_name' , ascending=False ) - To sort the dataframe wrt any column values in descending order. * df[ (df.Col1 = = ‘Element1’) & (df.Col2 == ‘Element2’) ] - Multilevel filtering - And Filter – Filtering the data with two & more items. * str.contains('Value_to_match’) - To find the records that contains a particular string. * dtypes - To show datatypes of each column. * pd.to_datetime(df.Date_Time_Col) - To convert the data-type of Date-Time Column into datetime[ns] datatype. * dt.year - Creating a new column with only year values. * df.groupby(‘Col_1’)['Col_2'].max() - Using groupby with two different columns. ....................................................................... Q. 1) What are all different subjects for which Udemy is offering courses ? Q. 2) Which subject has the maximum number of courses. Q. 3) Show all the courses which are Free of Cost. Q. 4) Show all the courses which are Paid. Q. 5) Which are Top Selling Courses ? Q. 6) Which are Least Selling Courses ? Q. 7) Show all courses of Graphic Design where the price is below 100 ? Q. 8) List out all the courses that are related to 'Python'. Q. 9) What are courses that were published in the year 2015 ? Q. 10) What is the Max. Number of Subscribers for Each Level of courses ?
    • Lecture 8 :
    • Project 8 - Netflix Data Analysis
    • In this lecture, you will learn how to work on a real project of Data Analysis with Python. Questions are given in the project and then solved with the help of Python. It is a project of Data Analysis with Python or you can say, Data Science with Python. The commands that we used in this project : * head() - It shows the first N rows in the data (by default, N=5). * tail () - It shows the last N rows in the data (by default, N=5). * shape - It shows the total no. of rows and no. of columns of the dataframe. * size - To show No. of total values(elements) in the dataset. * columns - To show each Column Name. * dtypes - To show the data-type of each column. * info() - To show indexes, columns, data-types of each column, memory at once. * value_counts - In a column, it shows all the unique values with their count. It can be applied on a single column only. * unique() - It shows the all unique values of the series. * nunique() - It shows the total no. of unique values in the series. * duplicated( ) - To check row wise and detect the Duplicate rows. * isnull( ) - To show where Null value is present. * dropna( ) - It drops the rows that contains all missing values. * isin( ) - To show all records including particular elements. * str.contains( ) - To get all records that contains a given string. * str.split( ) - It splits a column's string into different columns. * to_datetime( ) - Converts the data-type of Date-Time Column into datetime[ns] datatype. * dt.year.value_counts( ) - It counts the occurrence of all individual years in Time column. * groupby( ) - Groupby is used to split the data into groups based on some criteria. * sns.countplot(df['Col_name']) - To show the count of all unique values of any column in the form of bar graph. * max( ), min( ) - It shows the maximum/minimum value of the series. * mean( ) - It shows the mean value of the series. You will learn these things also: - Creating New Columns & Dataframe - Filtering (Single Column & Multiple Columns) - Filtering with And and OR - Seaborn Library - Bar Graphs ....................................................................... Task. 1) Is there any Duplicate Record in this dataset ? If yes, then remove the duplicate records. Task. 2) Is there any Null Value present in any column ? Show with Heat-map. Q. 1) For 'House of Cards', what is the Show Id and Who is the Director of this show ? Q. 2) In which year the highest number of the TV Shows & Movies were released ? Show with Bar Graph. Q. 3) How many Movies & TV Shows are in the dataset ? Show with Bar Graph. Q. 4) Show all the Movies that were released in year 2000. Q. 5) Show only the Titles of all TV Shows that were released in India only. Q. 6) Show Top 10 Directors, who gave the highest number of TV Shows & Movies to Netflix ? Q. 7) Show all the Records, where "Category is Movie and Type is Comedies" or "Country is United Kingdom". Q. 8) In how many movies/shows, Tom Cruise was cast ? Q. 9) What are the different Ratings defined by Netflix ? Q. 9.1) How many Movies got the 'TV-14' rating, in Canada ? Q. 9.2) How many TV Shows got the 'R' rating, after year 2018 ? Q. 10) What is the maximum duration of a Movie/Show on Netflix ? Q. 11) Which individual country has the Highest No. of TV Shows ? Q. 12) How can we sort the dataset by Year ? Q. 13) Find all the instances where: Category is 'Movie' and Type is 'Dramas' or Category is 'TV Show' & Type is 'Kids' TV'.
    • Lecture 9 :
    • Quiz : Project 1 - Weather Data Analysis
    • Project 1 - 2 Questions
    • Lecture 10 :
    • Quiz : Project 2 - Cars Data Analysis
    • Project 2 - 2 Questions
    • Lecture 11 :
    • Quiz : Project 3 - Police Data Analysis
    • Project 3 - 2 Questions
    • Lecture 12 :
    • Quiz : Project 4 - Covid-19 Data Analysis
    • Project 4 - 2 Questions
    • Lecture 13 :
    • Quiz : Project 5 - London Housing Data Analysis
    • Project 5 - 2 Questions
    • Lecture 14 :
    • Quiz : Project 6 - Census Data Analysis
    • Project 6 - 2 Questions
    • Lecture 15 :
    • Quiz : Project 7 - Udemy Data Analysis
    • Project 7 - 2 Questions
    • Lecture 16 :
    • Quiz : Project 8 - Netflix Data Analysis
    • Project 8 - 2 Questions
  • How do i access the course after purchase?

    It's simple. When you sign up, you'll immediately have unlimited viewing of thousands of expert courses, paths to guide your learning, tools to measure your skills and hands-on resources like exercise files. There’s no limit on what you can learn and you can cancel at any time.
  • Are these video based online self-learning courses?

    Yes. All of the courses comes with online video based lectures created by certified instructors. Instructors have crafted these courses with a blend of high quality interactive videos, lectures, quizzes & real world projects to give you an indepth knowledge about the topic.
  • Can i play & pause the course as per my convenience?

    Yes absolutely & thats one of the advantage of self-paced courses. You can anytime pause or resume the course & come back & forth from one lecture to another lecture, play the videos mulitple times & so on.
  • How do i contact the instructor for any doubts or questions?

    Most of these courses have general questions & answers already covered within the course lectures. However, if you need any further help from the instructor, you can use the inbuilt Chat with Instructor option to send a message to an instructor & they will reply you within 24 hours. You can ask as many questions as you want.
  • Do i need a pc to access the course or can i do it on mobile & tablet as well?

    Brilliant question? Isn't it? You can access the courses on any device like PC, Mobile, Tablet & even on a smart tv. For mobile & a tablet you can download the Learnfly android or an iOS app. If mobile app is not available in your country, you can access the course directly by visting our website, its fully mobile friendly.
  • Do i get any certificate for the courses?

    Yes. Once you complete any course on our platform along with provided assessments by the instructor, you will be eligble to get certificate of course completion.
  • For how long can i access my course on the platform?

    You require an active subscription to access courses on our platform. If your subscription is active, you can access any course on our platform with no restrictions.
  • Is there any free trial?

    Currently, we do not offer any free trial.
  • Can i cancel anytime?

    Yes, you can cancel your subscription at any time. Your subscription will auto-renew until you cancel, but why would you want to?

1125 Course Views

3 Courses

Hi, I am a Data Analyst, engaged with YouTube channel 'Data Science Lovers'. I have worked on various data analytics projects with Python. I try to explain all the concepts in a very easy way so that even a beginner can understand and learn without any doubt. Keep learning with us, you will enjoy the lectures. Thank You so much
View More...
  • Unmatched Variety and Value!
    Learnfly's monthly subscription offers unlimited access to a vast range of courses. Affordable pricing, compared to competitors, makes it the ultimate choice for continuous learning.
    Jessica M.

    4.7

    JM
  • Top-Notch Quality, Affordable Rates!
    High-quality courses with certified instructors make Learnfly stand out. The affordable pricing is a game-changer for those seeking premium education.
    Alex P.

    4.5

    AP
  • Certified Excellence Every Time!
    Learnfly's courses, taught by certified instructors, ensure top-notch learning experiences. The course completion certificates add significant value to one's skill set.
    Sarah R.

    4.3

    SR
  • Round-the-Clock Support!
    Learnfly goes the extra mile with 24/7 course support. Their dedication to helping students succeed is commendable.
    Ryan K.

    4.1

    RK
  • Learn Anywhere, Anytime!
    Whether on mobile, PC, or tablet, Learnfly's platform offers flexibility. Learning on the go has never been easier.
    Emily S.

    4.7

    ES
  • Job-Ready Skills!
    Learnfly's job-oriented courses equip learners with practical skills for the workplace. An investment in career growth!
    Jake M.

    4.2

    JM
  • Budget-Friendly Brilliance!
    Learnfly's pricing is a steal for the quality and variety of courses offered. Quality education without breaking the bank.
    Olivia T.

    4.5

    OT
  • Instructor Excellence Unleashed!
    Learn from the best with Learnfly's certified instructors. The platform ensures that knowledge is imparted by industry experts.
    Daniel L.

    4.0

    DL
  • Achievement Unlocked!
    Learnfly not only offers courses but also recognizes your efforts with course completion certificates. A sense of accomplishment with every course finished.
    Maya H.

    4.6

    MH
  • Learning Revolution!
    Learnfly's platform is a revolution in education. Access to unlimited courses at affordable rates is a game-changer.
    Ethan W.

    4.7

    EW
  • google-tensorflow-hands-on-with-python-latest

    Google TensorFlow Hands on with Pyt...

    By : UNP United Network of Professionals

    Lectures 51 Beginner 3:48:44
  • learn-elixir-programming-from-zero-to-hero

    Learn ELIXIR programming from Zero ...

    By : Pranjal Srivastava

    Lectures 35 Beginner 3:12:57
  • create-your-own-programming-language-from-scratch

    Create your OWN Programming Languag...

    By : Harshit Srivastava

    Lectures 6 Intermedite 0:42:43
  • getting-started-with-coding

    Getting started with coding

    By : Devansh ‎

    Lectures 27 Beginner 3:37:31
  • superb-python-course-become-certified-python-developer

    Superb Python Course - Become Certi...

    By : Paul Carlo Tordecilla

    Lectures 91 Beginner 2:49:20
  • c-from-the-beginning

    C# from the beginning

    By : Igor Evdokimov

    Lectures 31 Beginner 2:46:54

Students learning on Learnfly works with Fortune 500 companies around the globe.

Sign Up & Start Learning
By signing up, you agree to our Terms of Use and Privacy Policy
Reset Password
Enter your email address and we'll send you a link to reset your password.