Login

Lost your password?
Don't have an account? Sign Up

Python Tutorial For Beginners In Hindi (With Notes) ?

Learn Python One Video in Hindi: This Python Programming in Hindi tutorial is a complete python course in Hindi comprising of 13 Python chapters and 3 Python Projects. After watching this course you can learn Python programming easily in Hindi. This Python programming course for beginners in Hindi is designed keeping in mind the current trend and recent changes in Python. This course is designed to teach Python to beginners making it one of the best sources to learn python in Hindi for beginners. Get ready to learn python programming in a fun way and make sure to download the python notes which are included with this video. Hope you enjoy this course on python programming for beginners in Hindi.
Download Python in Hindi Notes & Other Material (Scroll to the bottom):

Mirror:
►TimeStamps:
Course Logistics: 00:00:00
Chapter 0 – Introduction: 00:08:58
Chapter 1 – Modules, Comments & Pip: 00:14:17
Chapter 1 – Practice Set: 00:33:10
Chapter 2 – Variables & Data Types: 00:44:35
Chapter 2 – Practice Set: 01:25:10
Chapter 3 – Strings: 01:39:10
Chapter 3 – Practice Set: 02:16:56
Chapter 4 – Lists & Tuples: 02:35:04
Chapter 4 – Practice Set: 03:07:10
Chapter 5 – Dictionary & Sets: 03:20:12
Chapter 5 – Practice Set: 03:57:25
Chapter 6 – Conditional Expressions: 04:19:21
Chapter 6 – Practice Set: 04:48:53
Chapter 7 – Loops in Python: 05:14:34
Chapter 7 – Practice Set: 05:45:11
Chapter 8 – Functions & Recursion: 06:07:35
Chapter 8 – Practice Set: 06:36:28
Project 1 – Snake, Water, Gun Game: 06:52:30
Chapter 9 – File I/O: 07:06:55
Chapter 9 – Practice Set: 07:28:11
Chapter 10 – Object Oriented Programming: 08:08:38
Chapter 10 – Practice Set: 09:17:22
Chapter 11 – Inheritance: 09:48:30
Chapter 11 – Practice Set: 10:55:24
Project 2 – The Perfect Guess 11:37:01

Part 2 of this video:
►Covered in Part 2 of this Video:
Chapter 12 – Advanced Python 1
Chapter 12 – Practice Set
Chapter 13 – Advanced Python 2
Chapter 13 – Practice Set
Project 3 – Library Management System
►Checkout my English channel here:
►Click here to subscribe –

Best Hindi Videos For Learning Programming:
►Learn Python In One Video –

►Python Complete Course In Hindi –

►C Language Complete Course In Hindi –

►JavaScript Complete Course In Hindi –

►Learn JavaScript in One Video –

►Learn PHP In One Video –

►Django Complete Course In Hindi –

►Machine Learning Using Python –

►Creating & Hosting A Website (Tech Blog) Using Python –

►Advanced Python Tutorials –

►Object Oriented Programming In Python –

►Python Data Science and Big Data Tutorials –

Follow Me On Social Media
►Website (created using Flask) –
►Facebook –
►Instagram –
►Personal Facebook A/c –
Twitter –

https://www.educational.guru

46 comments

    1. Gaurav Kumar

      5:05:21
      Q1: Write a programe to find whether a given username contains less than 10 character or not.
      Ans: username = input(“Enter the usernamen”)

      if(len(username)>10):
      print(“It must contain less than 10 characters”)

  1. Vanshit

    1:37:06 (day 3)

    Started learning python with you and after 3 days, i completed 2 chapter
    Question was nice… I paused before your solution and solved myself… Took me some tries but done..

    Nice video and course

  2. Krishnan Kundan

    The only who is providing education free of cost in this costly world.
    Really Appreciative work.
    Just Imagine How Much Time He Would Have Invested just for us , writing handwritten notes is not a easy job.

    Hats Off To You Sir❤️???

  3. Binod Tandan

    10:42:50
    Star Pattern
    for row in range(3):
    for col in range(5):
    if(row==0 and col%2==0) or (row ==1 and col%4==0) or (row==2 and col%2==0):
    print(“*”, end=””)
    else:
    print(” “, end=””)

    print()

  4. Asghar Jamali

    Harry bro your course is amazing.
    I was Solving a strings test after your string chapter But i find some strange things like after inserting a string we can use * to add multiple same strings..
    And the escape value for Negative index..

  5. Sayyed Abid

    Guys’ let’s not forget he is IITians and he can earn in lakhs by utilizing his time but still he takes out some time to teach people like us in free of cost and also making notes for us which is also free . ‘Hats off to you man’? and mad respect to you?

  6. grisha azad

    5:12:53

    Practice set Q.7 : post = input(“Your post : “)

    post = post.lower()

    if “harry” in post:
    print(“You are talking about harry”)
    else:
    print(“you are not talking about harry”)

  7. SHOAIB NAIKWADI

    question 5 at 1:37:03 we can also write thie type
    a= input(“enter the number”)
    b= input (“enter the second number”)
    avg = (int(a)+int(b))/2
    print (“the average is:-“,avg)

  8. Aditya Singh Bisht

    06:07:10
    num = int(input(“Enter the number: “))

    for i in range(-10,0):
    print(f”{num} X {-i} = {num*-i}”)

    btw Thanks for putting in such efforts and providing us such amazing content in an easy to understand manner.

Leave a Comment

Your email address will not be published. Required fields are marked *

*
*