Python Tutorial For Beginners in Hindi | Complete Python Course 🔥

preview_player
Показать описание

Note: Scroll to the bottom of the page on the website to download the handbook

Some of you asked me about Python courses for further learning. I strongly recommend you not to buy any overpriced course. One of the most underrated resources in the journey of programmers is Udemy (This post is not sponsored). The affordable courses Udemy provides with doubt support are way way better than most of the paid courses I see online these days. Here are some of my top picks with discount applied for you:





** These are my affiliate links that will provide a discount for any course/courses you buy from the above links
TimeStamps ⌚
00:00:00 - Introduction
00:02:05 - Chapter 0 - What is Programming?
00:09:41 - Chapter 1 – Modules, Comments & pip
00:25:33 - Chapter 1 – Practice Set
00:34:55 - Chapter 2 – Variables and Datatype
01:06:47 - Chapter 2 – Practice Set
01:15:57 - Chapter 3 – Strings
01:40:20 - Chapter 3 – Practice Set
01:50:53 - Chapter 4 – Lists and Tuples
02:15:29 - Chapter 4 – Practice Set
02:25:56 - Chapter 5 – Dictionary & Sets
02:53:56 - Chapter 5 – Practice Set
03:09:41 - Chapter 6 – Conditional Expression
03:31:23 - Chapter 6 – Practice Set
03:58:17 - Chapter 7 – Loops in Python
04:23:13 - Chapter 7 – Practice Set
04:50:53 - Chapter 8 – Functions & Recursions
05:17:16 - Chapter 8 – Practice Set
05:34:55 - Project 1: Snake, Water, Gun Game
05:54:50 - Chapter 9 – File I/O
06:14:04 - Chapter 9 – Practice Set
06:42:22 - Chapter 10 – Object Oriented Programming
07:07:11 - Chapter 10 – Practice Set
07:23:17 - Chapter 11 – Inheritance & more on OOPs
07:48:07 - Chapter 11 – Practice Set
08:08:45 - Project 2: The Perfect Guess
08:15:38 - Chapter 12 – Advanced Python 1
08:49:02 - Chapter 12 – Practice Set
08:57:51 - Chapter 13 – Advanced Python 2
09:16:57 - Chapter 13 – Practice Set
09:30:22 - Mega Project 1: Jarvis
10:17:56 - Mega Project 2: Auto Reply AI Chatbot
10:50:55 - Conclusion

Follow Me On Social Media
Comment "#HarryBhai" if you read this 😉😉
Рекомендации по теме
Комментарии
Автор

Comment down the timestamp of your favorite part 🙂

CodeWithHarry
Автор

Cyber Security ki Video chahiye like kro jaldi jaldi...😊

Anup_Singh_
Автор

Haar ke jeetne vaale ko baajigar kahte hai,
Aur jo True ko False aur False ko True bana de use not operator kahte hai ❤❤😂😂

svcreation_yt
Автор

for 4:50:16 : Easier way n = int(input("Enter a number :"))
for i in reversed ( range(1, 11)) :
print({f"{n} X {i} = {n*i}"})

ChainLink
Автор

python course ❌
tehekla python course ✅

harry bhai op 🔥🔥

anushkayachit
Автор

Harryyy 🥺. You're the only reason I'm not giving up on programming. Thank you so much. You're the big brother we all desire.

nameisrobin
Автор

1:39:57
sometimes we need to use more special sequence character (ssc) to write more efficiently
there is a module
`import re`

print(re.findall(r'\d', '123abc'))
# Output: ['1', '2', '3']

abdulmuiz
Автор

1:35:50


str.split(separator): Splits the string into a list of substrings based on the separator.
text = "hello world"
print(text.split(" ")) # Output: ['hello', 'world']


str.count(substring): Returns the number of non-overlapping occurrences of a substring in the string.
text = "hello hello"
print(text.count("hello")) # Output: 2

twister
Автор

bhai is bande ko koi nobel award do bhai

isne 11 gante ki phyton video banadali jis ki mujhe sabse jayda jarut thi bhai love you yaar

Astriec
Автор

Yehi to chahiye tha ❤ love you Harry Bhai

dailybanglanewss
Автор

This python course is very much helpful.. I learnt from this... And i taught my juniors alos

sayantandevchoudhury-dcst
Автор

"Koi baat ni, , Koi baat nhi. You will do it better" You are very encouraging Harry. Really enjoying these lessons.

BhaskarGhosh-kmdp
Автор

Aur kitne talents hai Harris apne pass, nice cinematic teaser

shaiksaalam
Автор

Hi, my name is Ahad. I completed learning JavaScript from CodeWithHarry, and now I'm working at a software house in Islamabad, where I'm earning well. Thank you so much, Harry! Currently, I'm watching their Python course videos to further enhance my skills and increase my earning potential.

MindQuizHQ
Автор

1:39:58 \r Carriage return. moves the cursor to begining
\a ASCII Bell. Produce a bell sound

tukendragolegaonkar
Автор

ch-12 q-2

l=[1, 2, 3, 4, 5, 6, 7, 8, 9]
for index, element in enumerate(l):
index=index+1
if (index ==3 or index ==5 or index ==7):
print(f'{index}.{element}')
else:
pass

ayushpatel
Автор

1:04:25 Python me default input as a string hota hai usko int me typecast krna padta hai.
int(input("Enter a number"))
flote(input("Enter a number"))
, etc

paragagarwal
Автор

Hi,
Carry bhai .
This is for You....
'' Jindgi me jindgi ke liye,
coding bhut jruri hai...
mgr us sb jrurto ke liye;
ak acha leader bhut jururi hai. "

RoyalGetSong
Автор

Congratulations. Thank you soo much. I am really very happy to have this precious gift.

Dr.JayPrasad
Автор

2:57:57, sir I wrote the program differently and also used sorted() function in last to sort numbers, but the result is same but sorted number wise, program :- numbers = {
int(input("Write 1st No: ")),
int(input("Write 2nd No: ")),
int(input("Write 3rd No: ")),
int(input("Write 4th No: ")),
int(input("Write 5th No: ")),
int(input("Write 6th No: ")),
int(input("Write 7th No: ")),
int(input("Write 8th No: ")),
}

print("Unique Numbers Are:", sorted(numbers))

The_Money_Mastery