6 years later and still super helpful. blesses and much love brother!
@ljka7 жыл бұрын
Youre a master Python Programmer! You explain clearly and in-depth but i dont feel information overload. You know what to teach and not overdo it. I appreciate this. Thank you.
@coreyms7 жыл бұрын
Hey, thanks. That's nice to hear. I appreciate it!
@vinodkashyap5996 жыл бұрын
Yes i agree
@PalaniveluKs6 жыл бұрын
+1
@john349655 жыл бұрын
agree
@ramarao_amara5 жыл бұрын
that's true
@notanalien78364 жыл бұрын
This playlist is a GEM that I found during the Quarantine.
@brandoncarrera10174 жыл бұрын
Me too bro, this man is incredible
@rohanghoshdastidar10474 жыл бұрын
Agreement 100
@derrick_rjchurchbanks17204 жыл бұрын
really true i just enjoy it every day and not idle away the time
@Hrit4 жыл бұрын
same for me . Most of the other python courses are bullshit.
@soothingstationW4 жыл бұрын
Same lol
@MarkWusinich7 жыл бұрын
I have taken two courses on python and no one ever went over this. Thank you!!!
@peterchen57105 жыл бұрын
I have re-watched some of your videos multiple times, not because its hard to understand, its because you explained it so well I dont wanna miss any bits of it! You are truly a master programmer and a superb teacher, thanks for helping us to understand what Python really is!
@coreyms5 жыл бұрын
Thanks!
@adilnesar2912 ай бұрын
This guy deserves more recognition
@HenryFabianGT6 жыл бұрын
As an Chemical Engineering student, I can't thank you enough for the effort and time you put into these tutorials. Your elegant and smart way of teaching makes it easy to understand and love Python. Now, me and the thousands of people who followed your tutorials have the wings to fly and keep exploring the wonders that this language offers... thanks to you. *I salute you, Sir!*
@g.deepakkrishnaa38473 жыл бұрын
Why are you learning CS while pursuing Chemical Engineering? If you wanted, you would have studied CS from the beginning rather than coming into it now. People like you get into programming because of money and not because of passion.
@cristixyz3 жыл бұрын
@@g.deepakkrishnaa3847 Yeah. Heavens forbid someone tries to learn something new either out of curiosity or because he could apply it to his current field. How dare he? What an absolute disgrace of a human being for learning Python. He should be ashamed.
@uubfi37792 жыл бұрын
@@g.deepakkrishnaa3847 Wouldn't it be the other way around? That the guy's getting into programming because of passion not because of money. He's studying for chemical engineering, so he's probably going try to be a chemical engineer. Right? That would mean learning programming wouldn't really help him financially, so he must be learning it out of curiosity or passion rather than for the money.
@MrHossain2357 Жыл бұрын
Many youtuber teaches python but they are not really good at it. They probably good at other programming language and since there is so much similarity so they just teach. But this guy seems to be very good in python. Hence, can teach very clearly since he has a very in-depth understanding. It's crazy that thank to KZbin, we get this kind of content for free.
@bhupendrasinghgurjar60516 жыл бұрын
Master Of Python Programmers ! He not only focus on generalizing things but specialization in-depth . I appreciate this specialization not generalizing. Thank You
@achocolatemonkey6 жыл бұрын
As a someone with literally no prior experience with coding, you have made this videos so clear and easy to understand. I don't think words are sufficient to express my gratitude, but I really appreciate all the effort you take to make these videos!! Thanks a million!! 💕
@juarezmonteiro57773 жыл бұрын
I must say that you have an incredible ability to spread knowledge with simplicity. That's rare. Thank you for the videos.
@TheChillBison4 жыл бұрын
I took a full course on Python and this was never covered, yet it was one of the first things I had to look up when doing my first real project. Thank you!
@shantanusudame19164 жыл бұрын
Corey Schafer is easily one of the best online teacher out here. 100% crystal clear undertanding. Thank You so much
@oo61274 жыл бұрын
This man is a legend man, He went out of his way to actually share a joke from the Python community
@AKThu-g4d5 ай бұрын
This course is 8 years old yet still the best.
@dipamvasani87277 жыл бұрын
It's quite ostensible that you are a great programmer with in depth knowledge about the things you work with. Just out of curiosity, I wanted to ask you, where did you gain your knowledge base from and how did you master all these languages and tools. And I can comment this on every video of yours, "They are the best tutorials on youtube right now."
@coreyms7 жыл бұрын
Thank you for the compliment, Dipam. I studied computer science in college, so that is where I gained an understanding of the underlying concepts. Even though I enjoyed my college program, I still felt unprepared after graduation. I started off as a Front-end JavaScript developer for a GIS lab. That's when I was first exposed to Python and writing backend scripts. It took a lot of self-study to really grasp it. My favorite resources where the website Udacity and MIT OpenCourseWare. Udacity has a lot of great free courses put together by teams at Google, Microsfoft, Facebook, etc. And MIT OpenCourseWare has free lectures from MIT courses where you can relearn algorithms, data structures, and anything that may have faded since college. Other than that, I learn quite a bit on the job. I now work with Python every day and there is always something new that pops up that needs a solution. Thanks again for the kind words.
@mridulmacdu7 жыл бұрын
And we are really thankful for your best and great tutorials. so now you are become a full stack python developer ;-)
@dataScineceEnthusiast2 жыл бұрын
@@coreyms You are really very down-to-earth person. I really appreciate it👍
@phillipcarnock26366 жыл бұрын
I think what sets you apart is your ability to know your audience and stay on track with what you are teaching. Everything is to the point, succinct and clear. Great job.
@eurekapoultry72156 жыл бұрын
I really like that you throw extra tidbits in there that most "beginner" level courses would not. I have a fair amount of programming experience but Python is new to me. I started from the beginning just to make sure I didn't miss anything. Coming from "C" like languages, Python is a bit interesting.
@failuregreat94246 жыл бұрын
This particular video is literally one of the best videos I've ever watch about teaching something. I've programmed in some languages, just basic stuff and curiously I never had to deal with libraries, and I was always curious about it.
@coreyms6 жыл бұрын
Thanks!
@kumarmayank63104 жыл бұрын
Corey, I am a computer science graduate and I have just one word for you - AWESOME!!
@avenumadhav35683 жыл бұрын
1. When you are importing any custom modules, all the module files should be in the same folder as that of your main file that you are working. 2. import moduleName 3. if you wish to import only a specific function, variables and etc of that module: from moduleName import mFunc1, mFunc2 4. if you wish to customize further: from moduleName import mFunc1 as mf1, mFunc2 5.Some of the important standard libraries are: datetime, calendar, math, random, os, sys 6. print(sys.path) 7.print(os.getcwd()) 8. print(os.__file__) Thanks Corey, I learnt all the above things!
@mehas812 жыл бұрын
This guy is a python GOAT . Will contribute via PayPal. He pretty much takes hours of boring " I wanna throw up" lectures and sums up into 20 mins videos. Well done dude !!! Many thanks......
@yaboi15253 жыл бұрын
One day when I'll land on a job I'll make sure to recognize all your efforts in producing quality tutorials. You're the best when it comes to python no doubts. I owe you so much. Thank you very much sir.
@maribelyazdanifar88234 жыл бұрын
I appreciate how you organized the basics tutorials and explained the logic behind naming of the videos in this playlist. Thank you for sharing your knowledge and the teaching us Python in a very thoughtful way.
@animefreak21 Жыл бұрын
I have watched all the fundamental of Python videos thrice already. Though I know that Im kinda outdated of your videos but your way of teaching Corey makes me want to learn more. There are times I have thought I cant make it but because of these tutorials I have my hopes up again. You're the inspiration. Thank you.
@aperxmim6 жыл бұрын
I am blow away in the training, no slow intro, just the training, something we need
@noslenwerdna2 жыл бұрын
I am a C++ programmer and I've been trying to figure out why I should learn python so I've been watching a bunch of different videos to get a feel for what it's all about and why people are choosing it. That being said, this was one of the best videos that I have come across. I don't need to learn to program, I need to find libraries and see what they can do. Your video has pointed me into the right direction for my purpose and I thank you.
@KarthikRampur-ql2td6 жыл бұрын
By far the best tutorials I ever came across on the internet on python.Big thanks for your efforts.
@abolfazlrezaei5397 Жыл бұрын
after 5 years, these videos helped me to learn python very easly. I hope this comment make you happy and energetic
@easydatascience2508 Жыл бұрын
You can see mine too. Detailed Python playlist provides most of the fundamentals, step by step, and source files too.
@PradeepKumar-fj2ss3 ай бұрын
Thanks @Corey, Now i will jump into the Data Science Topics , year 2024 still in the top of the list Hats Off to you
@AnupamPatel026 жыл бұрын
Thanks a lot Corey, I have done several courses in python ( paid / open) , and have to say you got a interesting way of teaching , which keeps me going for the next video in the recommendation :).
@muneeral-amodi45056 жыл бұрын
Your are amazing! I've never seen such a comprehensive tutorial, your teaching is clear and organized and even more, it focuses on what we need. Thank you Corey, I really appreciate your wonderful efforts.
@mmma7929911 ай бұрын
Thank you very much, I've been procrastinating to learn python for years, but your well explained and concise videos motivated me a lot that I covered all basics you taught us.
@AnilGupta-iv1rz5 жыл бұрын
Your tutorials is the best thing happened to me in 2019.
@anjojna2675 жыл бұрын
Yooo...I love how you explain. Among all the other tutorials I've been watching, it's in your videos I get to understand Python clearly.
@lukechavhunduka29705 жыл бұрын
Dude never stop teaching I am 15 and I am starting my own website now and I used your Chanel whenever I was stuck thanks so much
@coreyms5 жыл бұрын
Thanks! Best of luck!
@SayWhatSteve7 ай бұрын
I actually got teary eyed when you explained that the rest of the videos would not be numbered because we covered the basics needed to go learn everything. This is maybe my third chosen route of trying to learn this stuff and by far has given me the most confidence moving forward! Thank you for an excellent series of videos! Can't wait to watch more.
@amandaahringer74663 жыл бұрын
You are an exceptional teacher and do a great job covering what's going on behind the scenes. I've taken several Python courses and this was never mentioned.
@guilhermezucco12694 жыл бұрын
Hello from Brazil. I'm currently getting to know python a bit better and I can honestly say that this playlist has truly helped me a lot so far. I already use some data science algorithms in R but was also hoping to widen my knowledge. This channel is really giving me valuable information on how to accomplish my goals. Thank you so much, Corey Schafer, for this!
@varunsaraogi84887 жыл бұрын
I cannot thank you enough for your tutorials, the clarity with which you explain is mind boggling. Thanks again!!
@jc91016 жыл бұрын
You have no idea how helpful your videos are! I sincerely thank you for all your efforts.
@maxinteltech33214 жыл бұрын
@Corey Schafer I contribute to your patron to appreciation all I have learnt from your videos. Please continue your GREAT job Corey!
@coreyms4 жыл бұрын
Thanks so much!
@camilomarin13105 жыл бұрын
You talk as simple as clean water, just perfect !
@rachitgupta23366 жыл бұрын
This guy is the best instructor on KZbin.
@ravisoni19054 жыл бұрын
Man, whenever i want to explore python and now there so many resources like udemy, but still always think of corey schafer. u r a gem. who ever will find this playlist will surely be a good a python atleast
@vladz3485 Жыл бұрын
Corey, thanks! You are the best in teaching Python. I finally understand all the complex stuff, because you made it easy to comprehend.
@genericnamethingy3 жыл бұрын
Thank you so much for having tutorials that are so clear and that I don't have to put at 1.25x speed. Perfect pacing, I'm experienced with other languages but I'm doing this from the start since you provide valuable information and explanations. Excellent, thank you!
@testhekid3 жыл бұрын
watched the video 3 times and finally understood how the standard library and importing modules work! also the comic looks fun i wanna check it out in the future when i understand more python
@sebastianskopek4 жыл бұрын
Awesome, awesome, awesome, and what a great way to end this Python intro with the antigravity module. Love it!
@Medicinboardexam7 жыл бұрын
I took a python beginner lesson on Udemy, and went back to your beginner course. I find your video really help to fill the gap what I missed in the Udemy python course. It makes everything more clear and I really like the way you make examples. Thank you for all the efforts of doing such a wonderful job. These are the best python videos for any beginners at least I truly recommend. Also, as a self-taught learner, I'm wondering what's your suggestions of getting more practice or exercise?
@aakashverma86025 жыл бұрын
Me nowdays in youtube i only search for your videos if i want something related to python , each and every video of urs consist of so much information , its really helpfull , thanks for your efforts ....!!!
@logenninefinger34204 жыл бұрын
Great tutorials 1- 9. Such fun and now just like that I am into spare time programming again after not writing any code for 15 years. Didn't need it in the job. Thank you very much!
@sunpengjie45656 жыл бұрын
I have to say this is the best intro series of video for python. Clear and easy to understand. As long as you have some basic background from programming, you can understand it. Great work Corey
@zraffens51455 жыл бұрын
You are a true teacher. I did not expect that you would show how to do it on Windows as well. Thanks a lot!
@nickt4235 жыл бұрын
I would call myself a beginner-intermediate at Django. I'm coming back to learn some of these concepts more thoroughly. I found myself using many of the things you are talking about, but I didn't understand why. Your tutorial series has done a great job clearing some of that up. Thank you Corey!
@omarpixel91764 жыл бұрын
I'm watching this in 2020 and timestamp 17:05 gave me a deja vu vibe. Thanks for doing this series by the way, it is probably the best series for Python beginners and intermediate programmers who want to learn Python.
@maheshwarmaddula59586 жыл бұрын
@Corey Schafer your python videos should be rated as the best and most useful one's
@RedBunnyFromMars4 жыл бұрын
This is fantastic. Thank you so much for making the series, it's like providing a swiss army knife that will be useful for literally everyone. I really hit a wall with this because I'm at the intersection of data visualization and professional cartoon production. This is incredibly helpful for automating Maya and Blackmagic Fusion and NukeX, and having the ability to parse tutorials and scripts is immensely useful. Thanks dude
@nikhilailani21194 жыл бұрын
Thanks is mandatory to such huge share of python knowledge. I gotta say, you taught me more than my university did. Thanks Corey!
@timothymcgahan51782 жыл бұрын
You're explain of 'path' and how to change it....... PERFECT. Thank you!
@Bingcenzo4 жыл бұрын
As someone with ADHD, your instruction is very palatable to me. I feel great learning from you!
@marco.nascimento5 жыл бұрын
Very nice in-depth tutorial on modules, I've been studying Python for a while and haven't almost no one getting in this particular topic of changing the path variable for module importing. Your work is awesome, cheers from Brazil. (I always like to say where I'm from to give the content maker a grisp of how far his work is getting heh)
@toothfairy53526 жыл бұрын
Omg🙊... we’ve finished the basics😍! Onto the next stuff!
@LouKvitek9 ай бұрын
Your pace was perfect... not too fast, not too slow. Well done.
@chandansarkar11236 жыл бұрын
Following this series in 2018. You are amazing Corey. Thanks a ton for putting this together..
@avantisinha40126 жыл бұрын
Your teaching is out of this world Python Man!! I am so impressed.
@jorgerdz44943 жыл бұрын
I've been learning from different sources about python and your videos are the ones that i've found more complete, thanks!
@cavidanbagiri18847 жыл бұрын
l live in Azerbaijan. l cant speak english but l want to learn python. dont have a lot of information in Azerbaijan about python. but l see your videos l can learn. thanks Corey . you are a best
@coreyms7 жыл бұрын
Glad you find them helpful! Also, I think your English is great. I wish I could speak a second language as fluent as you.
@7XxKiKoOxX74 жыл бұрын
Video 09/143 Cleared ! Thanks for the great introduction.
@mcan5434 жыл бұрын
#KeyTakeAways 9:17 sys.path.append 18:00 os.getcwd 18:12 os.___file___ gives the directory of the module
@bharath6955 жыл бұрын
I just say "Thank you "...you made me a better programmer today than yesterday!!.
@alihejazi63456 жыл бұрын
the way you teach is really awesome. you are like a teacher with unlimited energy and that's makes your videos super cool and awesome. thanks for everything I learned so much from you.
@mobasshirbhuiyanshagor36113 жыл бұрын
No words to complement your deliverables. Take a bow, Sir!
@Ricebow116 жыл бұрын
thanks Corey for the beginner tutorial videos. I've definitely capture a lot from watching your videos. I'm using these videos more than the materials provided by school... goes to show what school really has to offer.
@ReddoX304 жыл бұрын
Thank you Corey for these tutorials, they are really in depth and you cover all the little details that other tutorials leave out!
@mkilic64974 жыл бұрын
Corey all the best to you, already finished the beginner series and was a very good intro for me, many thanks for your efforts
@nitkarshchourasia2406 Жыл бұрын
Once I start earning, I will for sure Join your's Join button on this KZbin Channel. Why? Because you provided value. value which I wasn't able to get. value which no other was able to provide. don't know but you are true python wizard, indeed.
@sonder80595 жыл бұрын
You're one of the little people that use sublime and I love it
@Amalokch4 жыл бұрын
This is probably the best channel to learn Python. Very very easy to understand
@2kpresident3635 жыл бұрын
One of the best lecture among Python courses. You are really great!
@n3rd0 Жыл бұрын
Corey, I fully appreciate your work, everything is nice and clear! Until now all information was complicated, but you made it clear! Thank you!
@lomeshdaheria99604 жыл бұрын
Thanks Corey sir you have emerged as one of the best python tutor in youtube .
@vultures1852 Жыл бұрын
You're the best teacher, it's a pleasure to re-watch your videos
@smitpatel13583 жыл бұрын
Corey is the Boss! I just suggested one of my friends who is starting with python to get on to Corey's playlist. Thanks Corey!
@MrScalzitti Жыл бұрын
Chatgpt indicated you. And the playlist is really good! Congrats!
@syedbaryalay58496 жыл бұрын
the most satisfying tutorial. even if you don't wanna learn python these skills are great to get
@rationalcfbfan2 жыл бұрын
I love you Corey! Where have you been all my life? Thanks for these incredibly informative videos.
@AmazingJayB514 жыл бұрын
I’m learning Python now, and your series is really helpful, thank you! You explain the topics really well.
@BiancaAguglia5 жыл бұрын
Another excellent tutorial, Corey. I can't tell you how much this video series made my life easier. 😀
@FlareSoul695 жыл бұрын
Thank you for the clear explanation on "import" and "from..."!!!
@jacobgsutton4 жыл бұрын
Thank you for this man. This was everything I needed. Python module/import system is so much easier then Java lol.
@AmericanAdvancedStudios7 жыл бұрын
I'm a brazillian student and i'm loving these videos. Thanks
@rickychung78514 жыл бұрын
You are marvellous! I don't normally leave messages but I've enjoyed your vids so much.....A Big Thank You to You!
@cat369424 жыл бұрын
Its just amazing how straightforward your videos are !!
@mostafaelnady78275 жыл бұрын
the best tutorial ever in modules and you are the best python developer i have ever seen in my life and you are my idol sir big fan for you from egypt print("Thank you so much")
@lisandrofilloy51264 жыл бұрын
Corey, u are definitely the number one at teaching!
@wanghua772 жыл бұрын
I really like your tutorial! It clears my doubts. While I was watching your video, I couldn't help wondering why I didn't find your video earlier. Thank you so much!
Finally i understand what is import as after months of self study, now i finally know what is "import numpy as np, tensorflow as tf"
@promete794 жыл бұрын
Hi Linux users, You have to write: "nano ~/.profile" (without double quotes) at 10:20 "export PYTHONPATH=/the/directory/you/target:$PYTHONPATH" (without double quotes) at 10:38