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 –
[LIMITED STOCK] Buy a coding Tshirt for yourself from here: https://www.codeswear.com/tshirts (Free Shipping Pan India)
Codeswear.com was created during my Next.js Course and you can now buy a geek t-shirt for yourself from there.
I can ensure you the best quality and support 🙂
@Gamer Sankha yes
In practice 4 of chapter 7 the program is showing 0 and 1 are prime numbers.
Please Help.
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”)
can u hack insta i’d…?
Not able to get written notes
5:11:42
if we write ‘float’ in place of ‘int’ we can enter the values like 65.4, 78.8, 95.889 etc. and that will not give error.
yes!
1:37:08 – question was good, but average can be converted to int as the inputs are in INT because / operator will give result in float
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
06:07:19
a= int(input(“enter the number”))
for i in range(-10,-1):
print(str(a)+”x”+str(-i)+”=”, a*-i)
The guy is working hard everyday to make learning easy for us. I have never seen such a great guy ? in my life ?. You Deserve Millions of Subs ❤
In practice 4 of chapter 7 the program is showing 0 and 1 are prime numbers.
Please Help.
Pdf kese download kre???
@Crystal Code bhai itni toh earth ko human+animal+plants ki population ni hogi including the dead?
Bhai yaar notes kha pr milenge plzz koi bta di
here is my code….
5:05:1
name=input(“enter any namen”)
if(len(name)<10):
print("less")
else:
print("more")
9:04:31
Your videos are really good, easy to understand and we can learn basic python very easily with help of your videos. Thanks.
3:20:00
Ch-4 Lists and Tuples
10) a = (7,0,8,0,0,9)
print(a.count(0))
TERMINAL :-
3
3:19:36
Count the number of zero in the following tuple
a = ( 7,0,8,0,0,9)
Print(a.count(0))
Output=
3
a = 12
if (a>9):
print(“Greater”)
else:
print(“Lesser”)
output: Greater
4:33:46
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❤️???
Awesome tutorial, thanks Harry! How to get the handwritten notes?
can u help me how to access notes bcz m unable plz reply
@lovely songs unzip it
it is compressed
@Amit Jana description me link h
The guy is working hard everyday to make learning easy for us. I have never seen such a great guy ? in my life ?. You Deserve Millions of Subs ❤
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()
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..
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?
@Rohini Kole agar koi talented ho to kya job karna jaruri hota hai???.
@Arpit Pandey Very few people get crores in IITs.
crores not lakhs
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”)
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)
09:04:34
The Course content and also the way explained is excellent
Heartful thanks to you harry
In practice 4 of chapter 7 the program is showing 0 and 1 are prime numbers.
Please Help.
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.
@Sayon Roy 05:54:50
@Mani send the code
Bhai, in practice 4 of chapter 7 the program is showing 0 and 1 are prime numbers.
Please Help.
Dil se shukriya Harry sir ..love u 3000???
tony line
Hi
dil se love harry sir dil se love
? he is iron man ??