Thanks a lot for all the likes guys and Thanks a lot for your love and support! Any suggestions for me? Anything you think can be improved in the video?
Thanks Aurangzeb bhai! I try to shorten the length of the video as much as possible! I will take your feedback and will try to make the videos relevant and to the point!
kisi video me app, apne bare me bhi bataye , aapko kon kon se programming languages aati hai, apne kese sikhi ye coding thoda inspiration milegi logo ko
I'm 2022 student..❤️ Thanks to Allah, i choose Harry as my very first CS and programming mentor... He built my interest in Computer science... And i hope I'll be expert like him in future... Thank you Harry bro... Lot of love and respect for you....❤️❤️❤️❤️🇵🇰🇵🇰..... Indian mentors are amazing!!!!!!
There is one problem with python . That is you get many inbuilt function and it is very easy as compared to other languages like java and c++. As I have learned java in class 9 and 10 , I would say that if you want to develop your programming skills and your Brian logical power plz go with java. In java we have make a class and then main method and for swapping we have to write a code ourselves. Whereas we get almost everything in python therefore we doesn't make any efforts from ourside to write a code. Also we can easily write a code in python as it has math package and other package which comes with it making it so easy. You can't develop your thinking and logical skills with python. Plz one time see java programa for swapping and sorting. In python we can do soring just in one line without knowing the actual procces, but in java sorting code is of arround 20 tp 30 lines due to which you get a good grip on your programming skills.
@@ashokpal9041 Python is not used for basic computing. It is used for A.I Try writing code for A.I in java you will get it. And who told you by python you can't build a logical brain. You mean to say if things are easy to understand you can't build a logic that logic is beyond this world. Infect by python you can learn logic more easily than java. Because of python people are learning coding in order to make their life easy. Well it was my opinion but you can't say that some language is not good in something because you are fan of some other language.
There is one problem with python . That is you get many inbuilt function and it is very easy as compared to other languages like java and c++. As I have learned java in class 9 and 10 , I would say that if you want to develop your programming skills and your Brian logical power plz go with java. In java we have make a class and then main method and for swapping we have to write a code ourselves. Whereas we get almost everything in python therefore we doesn't make any efforts from ourside to write a code. Also we can easily write a code in python as it has math package and other package which comes with it making it so easy. You can't develop your thinking and logical skills with python. Plz one time see java programa for swapping and sorting. In python we can do soring just in one line without knowing the actual procces, but in java sorting code is of arround 20 tp 30 lines due to which you get a good grip on your programming skills.
sort(): Sorts the list in ascending order. type(list): It returns the class type of an object. append(): Adds one element to a list. extend(): Adds multiple elements to a list. index(): Returns the first appearance of a particular value. max(list): It returns an item from the list with a max value. min(list): It returns an item from the list with a min value. len(list): It gives the overall length of the list. clear(): Removes all the elements from the list. insert(): Adds a component at the required position. count(): Returns the number of elements with the required value. pop(): Removes the element at the required position. remove(): Removes the primary item with the desired value. reverse(): Reverses the order of the list. copy(): Returns a duplicate of the list
THANKS FOR YOUR EFFORT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Bro you don't know what you are for us . Simply , you are everything. Aap jaise youtubers k wajah se hi ham students ka bharosa bana rehta hai youtube pe . So , we can chill in class 😅🤣 and do a lot of masti and make memories. Thanks bro.
I am not from computer science background. I am basically switching my career to core sector to IT. Don't know about others but you are truly a wonderful teacher. Please keep doing such good work so that people like me can get very wide idea about programming language
@@momsspaghetti21 I am in 7th lmao.Obviously it will help because then in college, You can learn other languages faster/before other people which will help u in internships
Bhaiya my college is taking 1 lack fee but ...they are not teaching with this much effort.......you are of great help to people like us.......thanks a lot.......😘😘😘😘😘
I researched too much on over the internet at last I find that, this is the best playlist for python across RUclips also i must say it's too much batter than any other paid course. 👌👌
This is the best channel where I found that yes I can also learn python efficiently without payment ...... Thankyou Harry (I don't know what to say bhaiya or sir😅😅) ..... I hope that I can make a great command in python till my 11 th class I am in 10 right now
You're a very kind man. You are teaching us python in this much good way and also free! Whitehat Jr. teachers dont know the basics too they are money eaters. Thank you sooooooo much😭😭😭😊😊
thankyou harry bhai, mai iss playlist ko ekdam starting se follow kar raha hu, aur jo jo new functions aap bata rahe ho un sab ke sabhi methods ki mai practice kar raha hu externel websites se,
Bhai pls aap mujhe guide karoge kya? Aap ka field kya hai? Mera Btech mech hai aur mai just abhi fresher production engineer laga hu. But mujhe IT field pasand hai. Pls thoda help chhye kya aap baat karoge mujhse?
@@Ameyiscool mai 12th commerce ka student hu, mere subject me coding wagera kuchh nahi hai, mujhe bas ye kaam pasand hai interesting lagta hai bas issiliye karta hu.
Continue bro!! I'm a mechanical engineer and I have been learning python so easily with the help of your videos. I think in few months I'll be able to add this language in my resume! Keep it up your work bro!! Thanks a lot!!
Hay you learnt brother, bro i am nil at python Can i start from first video, I can able to learn or not..??? Don't know even A of pyhon, Commerce student Plzz help, you have done or not
Sir thank you so much for the series , I recently lost my job and also i was working in shit production support project , hopefully I learn from this series and get a good job .🙂 You explained it so well .
18: 20 # I am writing my code a = 5 b = 8 temp = a a = b b = temp print(a, b) # ye hai aam jindgi # In Python a, b = b, a print(a, b) # aur ye hai mentos jindgi
Your way of teaching is best and easiesr that everyone can understand. Thank you very much sir. I have a gap of 7 years in IT field but I am sure that I can comeback with your help. Again thanks a lot sir
10:23 when reversing I have to give negative values to access the list like print(numbers[-2 : -6 : -2]) Then it will print reverse with 1 skipped value. I am learing from your videos , and tried out this☺️ Thank you
If you use remove as numbers.remove() only without passing any value it simply removes the element at the 0th index in the list, therefore remove() method is quite opposite of pop() method
aur mai apko a nahi bataunga ki aap bahut acche teacher ho. may apko a bhi nahi bataunga ki mai infosys may executive hu aur apke videos say mujhe bahut help mili hai.
Some notes from the video, as well as my additions. List is a python data structure used to store data, usually of the same type. List syntax & slicing:- num = [5, 7, 2, 8, 6]
Thank you for this series. I have a little knowledge about this language and want to learn the advanced level of it. I'm glad I came across this series, which is really effective for programmers with any level of coding. Thank you again!!✌
Brother, your each and every videos r so good that it can be easily understandable.All these videos r also a positive Mark for those u r totally new in this programming world like me because you teach by taking the smallest thing which is quite helpful for us..Thank you:))
Just started following you sir. Try to reach out to latest videos soon. Very nicely explained. I know java so codes variables n all are damn easy in python and pycharm makes it more user friendly.
You are right... Pycharm is awesome. Good to have you in this course! I will see your comments in the exercises and quizzes. Do solve them! They are very important part of this course! All the best!
@@CodeWithHarry thank you so much sir. I promise to solve each exercise myself without looking out for comments. And very excited for the project ahead. Your friendly way of teaching makes things more interactive. Thanks a bunch.
Hi Harry . I just started watching your videos . I was thinking of learning python April 2018 but I didn't find any medium to learn it . But from your channel it seems quite easy to learn it thanks for making such a good series
When I m going learn so i use VS CODE this is same as pycham...i like your videos... 👍🏻👍🏻 And i m also learning Artificial Intelligence 😊 So you give me some advise for AI.. make a video.. Love from Pakistan ❤️
I started learning python by 28-05-23, Thanks God I found your Video, your teaching style is best of best, I am starting from Zero. your videos are priceless. Thank you so much for your effort. Your help and support. God Bless you Harry sir, thanks a lot 🌺🌺🌺🌷🌷🌷🌺🌺🌺
i observed one thing that when we take negative steps then index also gets reversed so if we take print(numbers[5:0:-3]) then it gives [3,7] and also by using print(numbers[-1:-6:-3]) gives [3,7]
Bro, Literally love you yaar ! Thank you so much for preparing this wonderful course... I don't even have words to describe how good I'm feeling rn after understanding this basic things which I skipped during my college (sem-1). Tbh I didn't took my computer language serious at that time and then ended up with a poor grade ( But now I just covered this whole thing in just 2 days lol (till tuples) Hope you'll make more such kind of interactive courses. Thanks Harry Bhai 🤌😘
literally no words are enough to describe your work harry sir 🙏🙏please keep making such videos for students like us who are new to programming but want to take it to the next level ... ❤❤a heart full of thanks to you
Bhai aapka course bahut jabardast hai abhi bhi itna time ho gaya 3 years ho Gaye fir Bhi log se Sikh rahe hain main khud isko se bahut kuch sikha hai ❤️
I have started with your python playlist and i am onw on the 8th playlist. when do i start solving practice problems for python(these are available online) ?
Yes there are so many practice exercises available on internet i have solved many of them and the are really good you just have to search practice exercises for python
harry: jo mai bataane wala hu use dhyaan se suniye also, Harry: @11:14 mai bilkul bhi ye bataakar time waste nahi karne wala hu ke.... (then shows it anyways)
Thank you haryy.. You're an excellent teacher. I am a beginner and wants to change my field as an Data Analyst. As if now your teachings are so valuable to me each and very concept you are clearing well.. Thank You!!
I am learning python in (jan.2022) and i think it is better than any paid course.
THANKYOU SO MUCH🙏🙏
yes
me too
Me too
Me too
march 2022
Thanks a lot for all the likes guys and Thanks a lot for your love and support!
Any suggestions for me? Anything you think can be improved in the video?
As always good but can you plz make some sessions for selenium plz :)
Mukesh Let me finish this and we will take selenium for sure on this channel
Thanks Aurangzeb bhai! I try to shorten the length of the video as much as possible! I will take your feedback and will try to make the videos relevant and to the point!
Thank you very much harry.
kisi video me app, apne bare me bhi bataye , aapko kon kon se programming languages aati hai, apne kese sikhi ye coding thoda inspiration milegi logo ko
I'm 2022 student..❤️ Thanks to Allah, i choose Harry as my very first CS and programming mentor... He built my interest in Computer science... And i hope I'll be expert like him in future... Thank you Harry bro... Lot of love and respect for you....❤️❤️❤️❤️🇵🇰🇵🇰..... Indian mentors are amazing!!!!!!
finally i got a full free tutorial of python which also covers other than basics
its fun when learning from u
thank you bossss.......
counselling letter in their accounts
There is one problem with python . That is you get many inbuilt function and it is very easy as compared to other languages like java and c++.
As I have learned java in class 9 and 10 , I would say that if you want to develop your programming skills and your Brian logical power plz go with java. In java we have make a class and then main method and for swapping we have to write a code ourselves. Whereas we get almost everything in python therefore we doesn't make any efforts from ourside to write a code.
Also we can easily write a code in python as it has math package and other package which comes with it making it so easy.
You can't develop your thinking and logical skills with python. Plz one time see java programa for swapping and sorting.
In python we can do soring just in one line without knowing the actual procces, but in java sorting code is of arround 20 tp 30 lines due to which you get a good grip on your programming skills.
@@ashokpal9041 Python is not used for basic computing. It is used for A.I
Try writing code for A.I in java you will get it.
And who told you by python you can't build a logical brain. You mean to say if things are easy to understand you can't build a logic that logic is beyond this world.
Infect by python you can learn logic more easily than java.
Because of python people are learning coding in order to make their life easy.
Well it was my opinion but you can't say that some language is not good in something because you are fan of some other language.
Those who are waching thus play list in lockdown 2020 hit a like by the way Harry is a good teacher of python
Oh s
Yeah
He is not good.
He is GOD
There is one problem with python . That is you get many inbuilt function and it is very easy as compared to other languages like java and c++.
As I have learned java in class 9 and 10 , I would say that if you want to develop your programming skills and your Brian logical power plz go with java. In java we have make a class and then main method and for swapping we have to write a code ourselves. Whereas we get almost everything in python therefore we doesn't make any efforts from ourside to write a code.
Also we can easily write a code in python as it has math package and other package which comes with it making it so easy.
You can't develop your thinking and logical skills with python. Plz one time see java programa for swapping and sorting.
In python we can do soring just in one line without knowing the actual procces, but in java sorting code is of arround 20 tp 30 lines due to which you get a good grip on your programming skills.
I am watching in 2020
sort(): Sorts the list in ascending order.
type(list): It returns the class type of an object.
append(): Adds one element to a list.
extend(): Adds multiple elements to a list.
index(): Returns the first appearance of a particular value.
max(list): It returns an item from the list with a max value.
min(list): It returns an item from the list with a min value.
len(list): It gives the overall length of the list.
clear(): Removes all the elements from the list.
insert(): Adds a component at the required position.
count(): Returns the number of elements with the required value.
pop(): Removes the element at the required position.
remove(): Removes the primary item with the desired value.
reverse(): Reverses the order of the list.
copy(): Returns a duplicate of the list
thnx buddy
THANKS FOR YOUR EFFORT!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Thank u bhaiya
@@controlpvt3164 I think your effort is much more 😂
bhai kal exams hai, thank you ye list ke liye
u need 10 million subs...i just stopped learning from udemy and starting watching ur videos..want to do data analysis..thank u so much
which course in udemy
yeah man, udemy is shit
same here..absolute shit
How much have you proceeded Manasi?
Woww
I researched too much and finally I find that this is the best playlist for python across RUclips 👌👌
Check chorey's video. It's is also super duper best.
How is ur coding now?
@@zane4240 good
Bro you don't know what you are for us . Simply , you are everything. Aap jaise youtubers k wajah se hi ham students ka bharosa bana rehta hai youtube pe . So , we can chill in class 😅🤣 and do a lot of masti and make memories. Thanks bro.
I am not from computer science background. I am basically switching my career to core sector to IT. Don't know about others but you are truly a wonderful teacher. Please keep doing such good work so that people like me can get very wide idea about programming language
Me too like u👍🏻
@@momsspaghetti21 I am in 7th lmao.Obviously it will help because then in college, You can learn other languages faster/before other people which will help u in internships
@@dakshgaur9395 I'm 7 th too😎🤣
@@dakshgaur9395 7 std 😐 u people got smartphones and that i time i had no access to internet 🥲
@@aceflame3756 I didn't even know what's internet
your channel is not less than a brand.seriously you are amazing.
Watching now
Bhaiya my college is taking 1 lack fee but ...they are not teaching with this much effort.......you are of great help to people like us.......thanks a lot.......😘😘😘😘😘
I researched too much on over the internet at last I find that,
this is the best playlist for python across RUclips also i must say it's too much batter than any other paid course. 👌👌
10:28 Why is doesn't gave output as 3 or 1
Bhai DIl jeet liya tune, jarvis wala recommended tha usko kholne k bad to fan ho gya aapka, ❤❤❤❤
somewhat same with me
same here
same hare bhai
successfully completed 10 videos of this playlist today. Python's fun ,not quarantine but..
till dates how much video you completed (python)
@@ADITYAKUMAR-qw8ob Completed the course brother!!
Today I also completed 10 videos. I hope that I could also complete course. Btw what are you learning now a days ?
@@ADITYAKUMAR-qw8ob Matlab!
Iss time kon si language padh rhe ho
Khush Qismat Hun Sir Jo Apka Channel mela☺
Your playlist motivated me to start learning python once again as I had left it on the way.
This is the best channel where I found that yes I can also learn python efficiently without payment ...... Thankyou Harry (I don't know what to say bhaiya or sir😅😅) ..... I hope that I can make a great command in python till my 11 th class I am in 10 right now
i m following this playlist in 2020
Also I am
Me too
Best of luck
Me also
@Aaryan Salavkar me to
Harry bhai thanks for sharing your knowledge free of cost
Harry Bhai ..apko uppar wale ne seriously fursat se bnaya h 😂😂...
Thnku so much bro❤️
You're a very kind man. You are teaching us python in this much good way and also free! Whitehat Jr. teachers dont know the basics too they are money eaters. Thank you sooooooo much😭😭😭😊😊
thankyou harry bhai, mai iss playlist ko ekdam starting se follow kar raha hu, aur jo jo new functions aap bata rahe ho un sab ke sabhi methods ki mai practice kar raha hu externel websites se,
Bhai pls aap mujhe guide karoge kya? Aap ka field kya hai? Mera Btech mech hai aur mai just abhi fresher production engineer laga hu. But mujhe IT field pasand hai. Pls thoda help chhye kya aap baat karoge mujhse?
@@Ameyiscool Are bhai Harry bhai se bol na, mai khud seekhne me laga bhi abhi
@@sourabhkamat8943 job karrhe ho ki nahi?
@@Ameyiscool mai 12th commerce ka student hu, mere subject me coding wagera kuchh nahi hai, mujhe bas ye kaam pasand hai interesting lagta hai bas issiliye karta hu.
Tq Harry for explaining with intresting & simple way...useful vedios 👍
I wish I could found this Playlist during quarantine. I'd have been an intermediate python user by now.
lmao, python is fricking easy. You can become a pro in a month or something
Ohhj
@@maedre9330 o really
@@soleil2816 yeah probably, i did it a month
@@maedre9330 maybe but its little difficult for me to finish in a month bcz my 10th boards are coming 🥴
Hello sir Harry
Your channel is very unique and awesome and you are the best teacher in RUclips channel.
Thank You Sir For giving us these precious tutorial without any charges.
Continue bro!!
I'm a mechanical engineer and I have been learning python so easily with the help of your videos. I think in few months I'll be able to add this language in my resume! Keep it up your work bro!! Thanks a lot!!
Hay you learnt brother, bro i am nil at python
Can i start from first video, I can able to learn or not..???
Don't know even A of pyhon, Commerce student
Plzz help, you have done or not
Thank you Harry. You are doing a social work, helping people in getting jobs. Bhagwan tumhara bhala kare. 🙌
Sir thank you so much for the series , I recently lost my job and also i was working in shit production support project , hopefully I learn from this series and get a good job .🙂
You explained it so well .
From which education background you are?
Making 2020 productive because of u ❤️
Bhut bhut dhanyawad sir🙏🏼🙏🏼
Thank you for this awesome, crazy, informative and no words to say series of python programming.
18: 20 # I am writing my code
a = 5
b = 8
temp = a
a = b
b = temp
print(a, b)
# ye hai aam jindgi
# In Python
a, b = b, a
print(a, b) # aur ye hai mentos jindgi
i follow your playlist sir you doing amazing videos now i am able to learning python
Thank You sir for supporting Us 🥰🥰
You are a great teacher thank you for all the efforts 🤧💜🥺
Better than most of Udemy Courses : )
good work, i followed udemy, pluralsight, but this is fun, not just learning. i dont feel like the pressure of finishing the course.
Hi Harry,
Liked the a = b, b= a concept . Did not know it existed in Python
no one...provides such type of content in free..even not in paid classes too..its tremendous..hats off..
Your way of teaching is best and easiesr that everyone can understand. Thank you very much sir. I have a gap of 7 years in IT field but I am sure that I can comeback with your help. Again thanks a lot sir
10:23 when reversing I have to give negative values to access the list like
print(numbers[-2 : -6 : -2])
Then it will print reverse with 1 skipped value.
I am learing from your videos , and tried out this☺️
Thank you
If you use remove as numbers.remove() only without passing any value it simply removes the element at the 0th index in the list, therefore remove() method is quite opposite of pop() method
Nope,it didn't
aur mai apko a nahi bataunga ki aap bahut acche teacher ho. may apko a bhi nahi bataunga ki mai infosys may executive hu aur apke videos say mujhe bahut help mili hai.
Harry is absolutely amazing, especially his teaching capability
Some notes from the video, as well as my additions.
List is a python data structure used to store data, usually of the same type.
List syntax & slicing:-
num = [5, 7, 2, 8, 6]
slicing syntax wrong
How to download all these
The whole playlist is over when I'm doing this course. I'm really exited for finishing this course and making that Jarvis AI!!!
Thank you for this series. I have a little knowledge about this language and want to learn the advanced level of it. I'm glad I came across this series, which is really effective for programmers with any level of coding. Thank you again!!✌
Thank you for the playist and explanation is very good.
Learnt new technique, how to swap 2 values.
Thanks for ur support
counselling letter in their accounts
I am a physics major and do not have any coding background
But from your channel it is very easy to learn python for me thank you so much sir
Hlo bro a new subscriber
I left my back python course which I was learning I started your course
Brother, your each and every videos r so good that it can be easily understandable.All these videos r also a positive Mark for those u r totally new in this programming world like me because you teach by taking the smallest thing which is quite helpful for us..Thank you:))
You are welcome :)
Super easy way to explained. Thanks a lot
Just started following you sir. Try to reach out to latest videos soon. Very nicely explained. I know java so codes variables n all are damn easy in python and pycharm makes it more user friendly.
You are right... Pycharm is awesome. Good to have you in this course!
I will see your comments in the exercises and quizzes. Do solve them!
They are very important part of this course! All the best!
@@CodeWithHarry thank you so much sir.
I promise to solve each exercise myself without looking out for comments. And very excited for the project ahead.
Your friendly way of teaching makes things more interactive.
Thanks a bunch.
You are the best
I am learning python in (Nov 2023) and i think it is better time for me.
Thannk you so much (HARRRY SIR)
u know the part i like most in your video , its that by saying i will not tell you this and that you revise them all up to us
Hi Harry . I just started watching your videos . I was thinking of learning python April 2018 but I didn't find any medium to learn it . But from your channel it seems quite easy to learn it thanks for making such a good series
SIR, YOUR WAY OF TEACHING IS REALLY AMAZING..I' M UNDERSTANDING EVERYTHING VERY FAST..WATCHING THIS IN JAN 2022
Thank sir I have watched 9 tutorials in a day, I'm in love with coding, programming ❤️
CWH is literally the best place when it comes to learning programming.
Video is on point and much informative. Thanks!!🙏🏻❤
Bhindi ki sabzi 😂😍👌
Harry practice programs de diya karen kuch
With there solution
For extra practice
Thanks...😊
I always like 🔥 🔥🔥
harry sir thank you I'm 11 years old you learn me python very nice thanks
When I m going learn so i use VS CODE this is same as pycham...i like your videos... 👍🏻👍🏻
And i m also learning Artificial Intelligence 😊
So you give me some advise for AI.. make a video..
Love from Pakistan ❤️
bhai tum if or else code kese run karte ho? Vs me out put pe me kuch dal nahi sakta hi kiyu?
@@rgd2949 may terminal pr chalta ho python likh kr file ka name dalta ho us ka gy
brother terminal par kese? detail me bol sakte ho?
harry bhai can you upload practice question on python.......?
counselling letter in their accounts
Go through his video i.e python in one video.. there u find lots of exercises .. 😊
I started learning python by 28-05-23, Thanks God I found your Video, your teaching style is best of best, I am starting from Zero. your videos are priceless. Thank you so much for your effort. Your help and support. God Bless you Harry sir, thanks a lot 🌺🌺🌺🌷🌷🌷🌺🌺🌺
He tells us everything by just saying "main aapko yeh batakar bor nhi karunga "😂😂
👍
😂😂
Correct 😊👍
haahaahaahaahaahaa
Correct
i observed one thing that when we take negative steps then index also gets reversed so if we take print(numbers[5:0:-3]) then it gives [3,7] and also by using print(numbers[-1:-6:-3]) gives [3,7]
If I print(numbers [0:5:-2]) output is [] thats ok
But if I print (numbers [0:5:-1] then also I get the output[] HOW????
@@demonking7900 print(numbers [5:0:-2]) use this
This PYTHON course is Helpful❤❤
Bro, Literally love you yaar ! Thank you so much for preparing this wonderful course... I don't even have words to describe how good I'm feeling rn after understanding this basic things which I skipped during my college (sem-1). Tbh I didn't took my computer language serious at that time and then ended up with a poor grade (
But now I just covered this whole thing in just 2 days lol (till tuples)
Hope you'll make more such kind of interactive courses. Thanks Harry Bhai 🤌😘
Bhai I'm doing BSC CS will this help full for 1st semester
a="Good Explainantion"
print(type(a)
Error. 😂 compelete it.
()
Error ni h just copy kiya tha but yha parenthesis copy kiya hua nhi aaya
syntax error
a=("Good Explainantion")
Print (type(a))
String
String😅
Mene ajj tak jitne bhi playlist dekhihe iss se achha playlist kahinpar bhi nahi hai.......Carry on harry bhai,I like you very much.......
Print(10000000000000000×"👍")
mohit Choudhary hawaa
Print ("print (1000000000000000x👍)x1000000000000x👍)
Error Aaega bhai
Kyunki
Print(1000000000000000*👍)
Ye kar ke dekho
× nahi likhenge , hum likhenge *
literally no words are enough to describe your work harry sir 🙏🙏please keep making such videos for students like us who are new to programming but want to take it to the next level ... ❤❤a heart full of thanks to you
Bhai aapka course bahut jabardast hai abhi bhi itna time ho gaya 3 years ho Gaye fir Bhi log se Sikh rahe hain main khud isko se bahut kuch sikha hai ❤️
Day1: 9 videos of python tutorials 😃😃
C and C++ programmers after 18:22 my whole life was totally lie...
same..:(
@@Sanketss 😢😢👍👍
Same
But i am learning c c++ because why not it's my first language
Best teacher ever in RUclips that field
Now that Harry has a brand new high-end gaming rig, now he can make even gameplay videos of GTA V rather than just showing it to us on his desktop XD
I have started with your python playlist and i am onw on the 8th playlist. when do i start solving practice problems for python(these are available online) ?
Yes there are so many practice exercises available on internet i have solved many of them and the are really good you just have to search practice exercises for python
@@Ayushihere-gi8ik can you pls give me link where are exercises?
@@babrusfalcon4334 yes wait a sec
@@Ayushihere-gi8ik waiting
@@Ayushihere-gi8ik this sec is too long 😥
List
numbers = [ ]
numbers.append(1)
numbers.append (3)
numbers.append (1.5)
Print (numbers)
Right click run
Thank you harry sir
Who is learning this in 2021?? I'm learning in 2021
i alsoo
me
@@divyeshpatel8755 me too
Bro! You did not tell about operators:
1) Arithmetic operators
7
2) Assignment operators
13
3) Comparison operators
6
4) Logical operators
3
5) Identity operators 2
6) Membership operators
2
7) Bitwise operators 6
Bro if you know them then why are you wasting your time here . Harry Bhai ko pta h kya krwana h kya nhi
I think it is the best tutorial of coding I might be watching in my life.Well done Harry bhaiya,doing great job
harry: jo mai bataane wala hu use dhyaan se suniye
also, Harry: @11:14 mai bilkul bhi ye bataakar time waste nahi karne wala hu ke.... (then shows it anyways)
Yep😂😂
That is his sarcasm
16:45 haaaaaaaaaaaaaaaaaaaaaaaa
😂😂😂
thanks a lot for explaining each and everything so easily ...you are doing a commendable job Harry. bravo
a = input("Your favorite coding youtuber")
print (a)
Output = Code with Harry.
Are you agree??
"2022 students stand up"
I loved the way of you explains complex things :)
Any one watching in 2022
2024
Heyy
Print["2023 students stand up"]
I am learning python from this channel from this monthe and I already like it.
I hope I will be able to code good enough to help in my college life!
Print ("Those who just passed class 10th")
bro you are just amazing
harry bhai You are great person From karachi pakistan..!!
I was understand clearly ...it's very helpful ❤️❤️❤️❤️❤️❤️❤️ for me
Thank you haryy.. You're an excellent teacher. I am a beginner and wants to change my field as an Data Analyst. As if now your teachings are so valuable to me each and very concept you are clearing well.. Thank You!!