There are some people in the world, who are deeply bitter and they don't know the way out of it. And instead of trying harder, they try to pull down others around them.
Simply amazing!!!!! I'm a Spanish native speaker with a low English level and a Python beginner with 64 years old (my neurons are a bit hard to learn) but Tim's so clear and fluent! Thanks a lot Tim, you're making my learning path easier....
*All Tim's reccomended skills for each skills level* *I reccommend actually watching the video, this is just to remind you* ---------------------------------------- Basic ---------------------------------------- 1. 1:46 Variables 2. 2:00 Conditions 3. 2:09 Chained Conditionals 4. 2:20 Operators 5. 2:35 Control Flow (If/Else) 6. 2:40 Loops and Iterables 7. 2:50 Basic Data Structure 8. 3:10 Functions 9. 3:17 Mutable vs. Immutable 10. 3:48 Common Methods 11. 4:11 File IO ---------------------------------------- Intermediate ---------------------------------------- 5:14 Object Oriented Programming 5:50 Data Structures 6:05 Useful stuff to improve your programming [Code: "techwithtim" for 10% off] 1. 6:43 Comprehensions 2. 7:10 Lambda 3. 7:38 Collections Module *(Useful to understand)* 4. 7:38 Map and Filter *(You can use on collections)* 5. 7:55 ⋆args and ⋆⋆kwargs *(Reccommended to learn this before learning decorators and first class functions/closures)* 6. 8:17 Inheritance 7. 8:32 Advanced Class behavior 8:40 Dunder methods (Reccomended for advanced class behaviors) 8. Bahavior 9. 9:00 PIP *(Python Package Manager)* 10. 9:11 Environments 11. 9:18 Module Creation 12. 9:30 Async IO ---------------------------------------- Advanced *(You don't 'Need' to learn this to be a 'Good' Python programmer, but if you know basic and intermediate, you can learn it when u need to)* ---------------------------------------- 1. Decorators 10:25 2. Generators 10:42 3. Context Managers 11:07 4. Metaclasses 11:21 5. Concurrency 11:40 6. Parallelism 11:40 7. Testing 12:28 8. Packages 12:43 9. Cython 12:58 ---------------------------------------- Expert/Master ---------------------------------------- ⦁ How is python built. 14:00 ⦁ Where are you using your skills? 14:14 ⦁ Apply skills to a profession. 15:10
Mbare Boy, dont act like you didnt read his comment, you wanted to make a joke but there actually elpty words, talke the talk without walking the walk, ooh i cant say *without* because I dont know if you actually did something or not..
@@ZackAngelSmith Hi, I actually read his comment and liked it the moment it was posted. And it wasn't just a joke but a compliment on his teachings. I didn't know I can actually donate, and I will definitely do so by end of this week. If I am willing to buy a programming book or course on Udemy, I might as well consider donating to this guy or subscribing(link in bio). Anyway, you're just here to attack, and most probably you don't even appreciate like that.
Thank you so much. At first I was discouraged when your intermediate list kept going on and on and on..... I have 2 cousins at Google (software engineers)... One of them was my role model until he left the shores of Nigeria to start his new life at Google in the UK. Ever since then, I have had no role model... I have had to learn from the little memories I had of him coding to get myself to the Object Oriented Programming stage.... I have to say that you are in many ways my role model. Here in Nigeria, Python isn't seen as a very cool language. Maybe Java or C++ or JavaScript. However, you are a big UA-camr and you are making the python community very proud (including me).... Thank you so much.... I am irrevocably grateful!
@@deanjordan6053 if you really know programming it's really easy to learn the syntax it doesn't really matter what language ure learning as long as you are practicing
I started learning Python a year ago and I considered myself as an intermediate Python programmer but it turns out I am an advanced Python programmer. Thanks Tim for teaching me Python during my first year.
@@akunformalitas you could try to use python with Selenium and testing framework like behave, pytest,... to do automate regression test for your web apps.
I’m 30 trying to switch careers , I have a degree just in a psychology, but want to get into analytics is this something I could learn in a year to get a job ? If I can dedicate maybe 4-6 hours a week?
The programmer wanna be Tim. Don't overdo and become Kim. You wish to be like him. Not a cake walk or cookies and cream. Put your day in learning. Thats gonna make your life turning.
I love that list, however I'm missing - Proper exception handling (try, except) - Logging as intermediate topics. For me these two were essential for creating robust code.
I've been coding for something over 2 months now and I just realized that I know about the Basics and Intermediate sections of this video and even some Expert concepts...Well,I just got a feeling that I know at least a little bit of the vast world of coding and what I need to learn in order to get better.Thanks for the video Tim!I'm a 15 y/o teaching myself online and your videos are a great help!
@@najlaahassabelnabi8812 For projects that are categorized by their difficulty, try Project Euler. It's been around for years, and has tons of different problems for you to solve. projecteuler.net
That was exactly what I needed. I was learning python in bits and pieces. I missed File I/O from basics. I missed behaviour,environment, Async I/O from intermediate. I only learned decorators and metaclasses from advanced. And I learned pandas, numpy, and a bit of TenserFlow from Master. I was going in a haphazard manner and I didn't know what I didn't know.
@@iscoto4914 Thanks for being curious of my learning. You would be happy to know, I am working as a Python Developer now. Ofcourse learning is an never-ending process so it is still going on.
00:00 Learn key skills to master Python programming 02:12 Learn Python syntax, data structures, and functions. 04:21 Learn object-oriented programming and data structures. 06:19 Understanding key Python topics is crucial to being a good programmer. 08:13 Learn Inheritance, Advanced Class Behavior, Python Package Manager (PIP), Advanced Python Environments, and Asynchronous Programming 10:14 Learn advanced Python topics 12:14 Learn Python from Basic to Advance 14:08 To become a Python expert or master, focus on a specific area and learn about modules and tools to apply theoretical knowledge. Crafted by Merlin AI.
I think generators/iterators, comprehensions, context managers and decorators are the things that make python so great and more expressive than most other languages. So I'd recommend everyone to learn and use these things. Also since you mentioned the collections module, here are a few more modules from the standard lib that I would include in the list for advanced python programmers: sys, os, pathlib, dataclasses, itertools, contextlib, functools. The first three are obvious. But I think the last four are underused and really awesome!
@@marckiezeender These are not in the standardlibrary and it really depends on what you're doing if you need them, so I wouldnct say every "advanced" python programmer would have to know how to use these. A backend dev using mostly django doesnt necessarily need any of them but the ones I named are pretty much useful for anyone.
Yeah me even up to advanced. Used almost everything he shows in advanced. However you could start using Cython even before u at this level, because how "deep" you go into the cython rabbid hole is up to you. You can basically compile pure python code with cython and you still get 2-3 times faster code out of it. So i think its worth to look into way before that skill level. Oh and what do i do with all my knowledge ? Code silly games in pyhton XD.... But i really love this language :)
Basic = [Variables, Conditions, Chained Conditionals, Operators, Control Flow, Loops and Iterables, Basic Data Structure, Functions, Mutable vs. Immutable, Common Methods, File IO] Intermediate = [Comprehensions, Lambda, Collections Module, Map and Filter, *args and **kwargs, Inheritance, Advanced Class, Behaviour, PIP, Environments, Module Creation] Advanced = [Decorators, Generators, Context Managers, Metaclasses, Concurrency, Parallelism, Testing, Packages, Cython] Expert/Master = [Ask yourself - where are you using these skills? You must understand the low-level concepts of Python, such as the global interpreter itself. You must understand the building blocks of Python and play with them as if they were sand, manipulating them with ease and shaping them however you see fit]
Tim has put the legit time and effort in just teaching us how to code…. He has sooo many tutorials and resources that help us so much! In this video, he even wrote a list of the topics - which shows us that he really takes teaching us how to code seriously The people who disliked this video should be ashamed
thank you so much, Tim. I was worried, not knowing where to go from watching tutorials that combined everything. I believe you've given me the path. Thanks
Great vid. Been teaching myself python for a few months and thankfully have all the beginner concepts down. Have a grasp of OOP, but almost nothing else at the intermediate level. Really helpful to know exactly what knowledge gaps I should look into bridging. Cheers!!
Thank you for doing this, been looking for a thorough "road map" for a while. I feel so lost when self learning sometimes, and this is infinitely useful to help with that.
I just came across your channel and I am LOVING IT!!!! Thank you so much for these videos. They are very clear and straight to the point, as everything should be!
Hey Tim. My college starts this 31st August, computer science major. You and your videos have helped me gain so much of knowledge about python. I could create my own game at this age, I could think and code by myself, I could do super cool tricks with this, and so many more things. Now I am even following your flutter tutorial series. And I'm sure all this effort will pay off soon! Thanks to you brother! Love from India ❤️
It will. You are already doing the main thing that is required to be proficient in programming - going beyond the classroom and learning the topics you want to learn on your own. Keep that perspective up and I promise you x 1 billion you are going to thrive and succeed in the python programming industry.
I just wish one day I'll be able to meet you in person and thank you for the difference you have made in our lives as a tech enthusiast. You are my role model dude. ❤️
Great overview of skills. It's always subjective what are basic, intermediate, advanced and expert skills but I really like the segmentation here. Thanks for sharing :-)
I'd grateful for this video. That helps me a lot to stop going around to learn Python. It's very helpful and clear information that I need to know. Thank you so much Tim for sharing steps by steps! Keep the good work
Thanks to this video, I have an action plan to improve my coding. I started coding in python but did'nt know how or where to improve from. This gives a clear and concise idea of improvement
Very nice advice! The only thing I would emphasize is that at all stages of the python programmer's journey, even from the beginner and intermediate level onward its good to be programming small and medium size projects with python, and possibly learn to write unit tests even as intermediate. Good project ideas for python could be things like small games like hangman, tictactoe, battleship sinking game (where you guess and try to sink the enemy ships), minesweeper, snake etc. Also for database integration it can be fun to make a text-adventure game in python and use sql database for saving the game.(or a file)
Just watched his tutorial for beginners. And DAMN He explains it so good. Learned more from is videos that are free than the courses i bought and still cant figure out what its al about. Give this man the respect he deserves couse he is really putting in the effort to teach people on a good and understandable way. May god bless this man. Keep up the good work!💪🏽👍🏽
I've not come across any such perfect guide anywhere ... The perfect guide for anyone who would wish to get into python programming or someone who is stuck and don't know the way forward. Or if you feel like you've done everything in python, it serves as a perfect guide. I could never thank you enough, Tim... But thanks a lot.
10Q Tim for your effort and time you put into teaching us. For some of us, the impact on our lives, you generate is so great that words can't even describe. Thank you again.
This was very interesting. Good to get an overview over most of the important python concepts! Great work! I'm definitely going to use this while learning
angry HTML coders disliking the video. This is massively helpful to let me know where I stand. I was doing class functions and thought I was pretty good. but some beginner concepts were not clear to me. I need to brush up on my skills more. thanks, Tim. You've been very helpful throughout the journey. Waiting for more amazing videos! Shoot us with a day of life of Tim. We'd definitely like to know you better.
Geez man, you saved me lol, my brain is fried from reading and taking notes on Python documentation. This video definitely helps me reinforce what I've learned so far. What a guy you are.
:) The fact that I know 95% of everything you describe in this video gives me confidence that I don't need to spend 4 years in a University when I can just focus on the other 5% and apply for an internship.
*Talks about beginner skills Me: Ah this is easy *Talks about intermediate skills Me: Kinda hard but I think I got it *Talks about anything above that Me: What
I don't even fully know the beginner ones but I understand almost all (concepts) of what he was talking about lol I just don't know how to actually use them .
Hey Tim I have been watching a few of your videos over the past few days as I started learning python and I just wanna thank you so much for what you do. You are honestly the best and your videos are so awesome and you make it really easy to learn everything keep doing you do Tim.
You're doing a great work man. I absolutely admire you and your channel in general. I've been really focusing on programming (which I have been putting off for the past year) after watching your videos. Thank you man!
Hey thanks for this. Im a huge fan. I watch u on alot of my lunch breaks at work. Ive been lost for the past couple weeks on what to learn, n this gives a little bit of a roadmap. Thank u fr
I work with microcontrollers and power systems -- yet I'm only an intermediate programmer. I've learned out of desperation and necessity, but come to really appreciate it's power to automate and control systems. Thanks for insight.
12: Python Projects from Beginner to master: 1: 4 function calculator 2: add a GUI to the calculator 3: to check if a number is prime 4: random anything generator 5: snake game with GUI 6: Web scraper 7: Make an image file compressor 8: create a file manger/viewer with gui 9: create your own python module. 10: Rest api 11: your own programing language Master bonus: your own operating system (using Cython for C framework then python for functionality and GUI.)
@@arnavtheawesome8576 I made a clone of visual basic in around 2 months and the operating system doesn't have to be good, late programmer Terry davis made his own (though basic) OS in way less time.
This kid is the jesus christ of youtube! He's teaching us all of this for free, and he's very young! You will go to very high places bro! Keep up the great work.
This video is really great, I was not really able to find this information on "Learn Python Fast!" Websites after +1 year of programming in python and you just listed all of the things I wanted to know. Thanks!
well, there is only 1 source. Trial and error with perfecting it with each font, and even pixel size. the line of code is still very dangerous and should not be played with
When you say "immutable vs mutable" at 3:30 you're actually talking about passing by reference vs by value. Anywho, great video. This is just what I needed to pick up python quickly as an nth lang. 💙
@@TechWithTim well thats unhelpful. If you're gonna say "yes and no", explain where I'm right and where I'm wrong. However I'm going to insist that you're still mixing up your names. When you give a function an object you are passing by reference, this you can change it by calling methods on it. When you pass a function a built in primitive type e.g. String, that variable is passed by value. All primitive types are immutable. Str = "dskdk" will not allow Str[0] = "a" but arr = [1,2] will allow arr[0] = 4. Two separate concepts. The first passing by reference and passing by value, and closely related to functions. Meanwhile immutability is present event within the same exact function/scope.
I've been trying to learn python well but I'm actually learn a wrong way. Now I know what I want to achieve and stick to it. Thank you Tim! You are amazing!!
I started learning by following your game guides. It's easier to learn when you can see your results in real time as the game slowly comes together. It helped me focus and made me feel like I was actually accomplishing something.
I really liked this. At it's minimum this taught me a few terms I was unaware of which makes furthering my skills easier. But it's so much more than that. Showed me holes in my knowledge, gave me a really solid and open ended roadmap, and did it all in a calm concise manner. Good job man keep the awesome information coming
At school, I learnt mainly beginner stuff, but when NEAs came round, I started learning most of the things listed in the intermediate and advanced stuff (like map, lambda, context manager, and CSV - which wasn't listed in this video). As of now, I've only been programming for about 8 months, in and out. A good thing to do is obviously watch Tim's tutorials, but to also make your own problems and make algorithms to solve them, cos in this way, it's easy to have the 'programmer influence' and learn topics out of your league.
I am wierd, here is what I learnt today: Basic: yep I basically know it Intermidiate: I know most of it but not all so surly I won't know the advance leve- Advanced: I know about 75% of it.... Expert: nope, I am not a expert.
A lot of people don’t have good professors or teachers that are instructing them on python. I’m grateful that I have Tim, the other on UA-cam, and a great professor to assist my learning. It’s an older video but thanks Tim
Start a high paying tech career making $60k+/year with NO DEBT: coursecareers.com/a/techwithtim
What about SOLID principle ?
How would you rate yourself on a scale of 10 in python and why?
@@plusk343 he is probably a 10
just curious...is python your favorite language?
Please make video on cython and async IO I think just these two topics are missing on your channel...
Please 🙏🙏
How come people dislike this video when this man is calmly just helping you a lot with his experience...ppl today
Maybe they are java developer , scratching their head , trying to figure out thier error .....😂😂
some stupid peoples who are jealous of his success and skills
There are some people in the world, who are deeply bitter and they don't know the way out of it. And instead of trying harder, they try to pull down others around them.
@@memy4460 exactly
I am Australia and accidentally disliked at first, probably just the other aussies who forgot :)
Simply amazing!!!!! I'm a Spanish native speaker with a low English level and a Python beginner with 64 years old (my neurons are a bit hard to learn) but Tim's so clear and fluent! Thanks a lot Tim, you're making my learning path easier....
64 and learning python. Wow. And here i am 28 and crying whether i can learn after this age. Regards
48 here, still learning Python, C# and some JS frameworks.
your english is great
Your English is super clear and your zeal for learning is super inspiring. You are awesome!!👍👍👍
Why are you learning instead of enjoy last leg of your life
*All Tim's reccomended skills for each skills level*
*I reccommend actually watching the video, this is just to remind you*
----------------------------------------
Basic
----------------------------------------
1. 1:46 Variables
2. 2:00 Conditions
3. 2:09 Chained Conditionals
4. 2:20 Operators
5. 2:35 Control Flow (If/Else)
6. 2:40 Loops and Iterables
7. 2:50 Basic Data Structure
8. 3:10 Functions
9. 3:17 Mutable vs. Immutable
10. 3:48 Common Methods
11. 4:11 File IO
----------------------------------------
Intermediate
----------------------------------------
5:14 Object Oriented Programming
5:50 Data Structures
6:05 Useful stuff to improve your programming [Code: "techwithtim" for 10% off]
1. 6:43 Comprehensions
2. 7:10 Lambda
3. 7:38 Collections Module *(Useful to understand)*
4. 7:38 Map and Filter *(You can use on collections)*
5. 7:55 ⋆args and ⋆⋆kwargs *(Reccommended to learn this before learning decorators and first class functions/closures)*
6. 8:17 Inheritance
7. 8:32 Advanced Class behavior
8:40 Dunder methods (Reccomended for advanced class behaviors)
8. Bahavior
9. 9:00 PIP *(Python Package Manager)*
10. 9:11 Environments
11. 9:18 Module Creation
12. 9:30 Async IO
----------------------------------------
Advanced *(You don't 'Need' to learn this to be a 'Good' Python programmer, but if you know basic and intermediate, you can learn it when u need to)*
----------------------------------------
1. Decorators 10:25
2. Generators 10:42
3. Context Managers 11:07
4. Metaclasses 11:21
5. Concurrency 11:40
6. Parallelism 11:40
7. Testing 12:28
8. Packages 12:43
9. Cython 12:58
----------------------------------------
Expert/Master
----------------------------------------
⦁ How is python built. 14:00
⦁ Where are you using your skills? 14:14
⦁ Apply skills to a profession. 15:10
This comment looks like a script itself.
Thanks
pip actually stands for "Pip installs packages" :v
@@martinwujkowski2270 Course, but you don't need to know what it stands for. I was stating what it is
Thanks
I need pay tuition to this guy. He’s been my college 🤣🤣
Donation link in description 😉
@@TechWithTim haha looool😏
Mbare Boy, dont act like you didnt read his comment, you wanted to make a joke but there actually elpty words, talke the talk without walking the walk, ooh i cant say *without* because I dont know if you actually did something or not..
@@ZackAngelSmith Hi, I actually read his comment and liked it the moment it was posted. And it wasn't just a joke but a compliment on his teachings. I didn't know I can actually donate, and I will definitely do so by end of this week. If I am willing to buy a programming book or course on Udemy, I might as well consider donating to this guy or subscribing(link in bio).
Anyway, you're just here to attack, and most probably you don't even appreciate like that.
@@Captainfeso ?¿?¿¿??
Thank you so much. At first I was discouraged when your intermediate list kept going on and on and on..... I have 2 cousins at Google (software engineers)... One of them was my role model until he left the shores of Nigeria to start his new life at Google in the UK. Ever since then, I have had no role model... I have had to learn from the little memories I had of him coding to get myself to the Object Oriented Programming stage....
I have to say that you are in many ways my role model. Here in Nigeria, Python isn't seen as a very cool language. Maybe Java or C++ or JavaScript. However, you are a big UA-camr and you are making the python community very proud (including me).... Thank you so much.... I am irrevocably grateful!
I don't know why people look down on certain programming languages, it's the same concept, but with different syntax.
@@deanjordan6053 if you really know programming it's really easy to learn the syntax it doesn't really matter what language ure learning as long as you are practicing
God bless you brother
brooo i am a python programer in nigeria too. I think the issue is that python and coding isnt really popular in nigeria. i am in lagos btw
I admire people like you that, to even begin to learn programming must unfairly learn English, and you have a lovely vocabulary!
I started learning Python a year ago and I considered myself as an intermediate Python programmer but it turns out I am an advanced Python programmer. Thanks Tim for teaching me Python during my first year.
What are the sources you learn from?
What project did you make with python? I'm mostly on C# making web apps, currently learning python, don't know what to do with it yet.
@@akunformalitas you could try to use python with Selenium and testing framework like behave, pytest,... to do automate regression test for your web apps.
I agree, it very difficult to judge yourself
I’m 30 trying to switch careers , I have a degree just in a psychology, but want to get into analytics is this something I could learn in a year to get a job ? If I can dedicate maybe 4-6 hours a week?
#1 Skill to learn: How to look up things effectively and understand the doc of whatever API you decided to torture yourself with.
google api doc 😭
So accurate.
@@borpie then you haven't seen Oracle, noob
youtube api docs
@@SmartCrime nasa insight api
Tim is one of the best and i wish to be like him
Be like yourself man
Just keep working bro nothing can stop you just be away from negative people
Be yourself and never surrender
Stop wishing and start working
The programmer wanna be Tim.
Don't overdo and become Kim.
You wish to be like him.
Not a cake walk or cookies and cream.
Put your day in learning.
Thats gonna make your life turning.
Respect for this person. Thanks Tim! You and Corey are the best Python instructors I've seen here on YT. Keep it up!
I love that list, however I'm missing
- Proper exception handling (try, except)
- Logging
as intermediate topics. For me these two were essential for creating robust code.
Yeah I was wondering why they were missing. As they are important, along with how to debug code.
@@MrRockus
Debugging is a whole tier by itself.
I was literally thinking about this and then Tim posts this video. Great work!
Excellent, I would add Logging and Debugging as skills for Intermediate or Advanced.
Couldn’t agree more!
Very informative! Thank you so much for mentioning the advanced part as well really helped me out👏
Wow thank you!
@@TechWithTim didnt think you would see this after it was uploaded long time ago😝 nice video again!
I've been coding for something over 2 months now and I just realized that I know about the Basics and Intermediate sections of this video and even some Expert concepts...Well,I just got a feeling that I know at least a little bit of the vast world of coding and what I need to learn in order to get better.Thanks for the video Tim!I'm a 15 y/o teaching myself online and your videos are a great help!
SamSquare same
What are the sources you learned from?
how is it now?
how has it been going for u now?
you definitely now have a ceo job at google right
I'm in love with python and i wanna master it fr
I think the most important thing is also learning how to build different projects and know when and when not to use these different levels of python
Couldn't agree more!
Is there any source where I can get projects that categorized by their difficulty levels?
@@najlaahassabelnabi8812 try udemy.com
@@najlaahassabelnabi8812 For projects that are categorized by their difficulty, try Project Euler. It's been around for years, and has tons of different problems for you to solve.
projecteuler.net
@@najlaahassabelnabi8812Maybe I'm too late but 'Codewars & leetcode' are the best resources.
⭐️ Timestamps ⭐️
00:00 - Introduction
00:45 - Introduction Animation
00:54 - Video Resources
1:18 - Basic Skills
4:40 - Intermediate Skills
9:50 - Advanced Skills
13:25 - Expert/Master Skills
That was exactly what I needed.
I was learning python in bits and pieces.
I missed File I/O from basics.
I missed behaviour,environment, Async I/O from intermediate.
I only learned decorators and metaclasses from advanced.
And I learned pandas, numpy, and a bit of TenserFlow from Master.
I was going in a haphazard manner and I didn't know what I didn't know.
how's your python learning going?
@@iscoto4914 Thanks for being curious of my learning.
You would be happy to know, I am working as a Python Developer now.
Ofcourse learning is an never-ending process so it is still going on.
@@ashutoshtiwari4398 Cheers to you for a job well done! I would be appreciated, if you give some suggestions for a beginner like me:)
@@iscoto4914 they never return :) ...i know its hard but thats the truth
"...from Master" ???
00:00 Learn key skills to master Python programming
02:12 Learn Python syntax, data structures, and functions.
04:21 Learn object-oriented programming and data structures.
06:19 Understanding key Python topics is crucial to being a good programmer.
08:13 Learn Inheritance, Advanced Class Behavior, Python Package Manager (PIP), Advanced Python Environments, and Asynchronous Programming
10:14 Learn advanced Python topics
12:14 Learn Python from Basic to Advance
14:08 To become a Python expert or master, focus on a specific area and learn about modules and tools to apply theoretical knowledge.
Crafted by Merlin AI.
Level 5 : Create Python from Scratch.
You blew me with that. Phew!!!
Level 6: Create Own engine using Python/Cython
Level 7: Hello World
@@stavroskaragiannis1403 using Python :-D
Level 10: Learn how to ctrl c and ctrl v.
I think generators/iterators, comprehensions, context managers and decorators are the things that make python so great and more expressive than most other languages. So I'd recommend everyone to learn and use these things.
Also since you mentioned the collections module, here are a few more modules from the standard lib that I would include in the list for advanced python programmers: sys, os, pathlib, dataclasses, itertools, contextlib, functools.
The first three are obvious. But I think the last four are underused and really awesome!
how about numpy, scipy, matplotlib, etc?
@@marckiezeender These are not in the standardlibrary and it really depends on what you're doing if you need them, so I wouldnct say every "advanced" python programmer would have to know how to use these. A backend dev using mostly django doesnt necessarily need any of them but the ones I named are pretty much useful for anyone.
Before this video I thought I was a totally newbie, found out I know most of the stuff in the intermediate level
Yeah me even up to advanced. Used almost everything he shows in advanced.
However you could start using Cython even before u at this level, because how "deep" you go into the cython rabbid hole is up to you. You can basically compile pure python code with cython and you still get 2-3 times faster code out of it. So i think its worth to look into way before that skill level.
Oh and what do i do with all my knowledge ? Code silly games in pyhton XD....
But i really love this language :)
Basic = [Variables, Conditions, Chained Conditionals, Operators, Control Flow, Loops and Iterables, Basic Data Structure, Functions, Mutable vs. Immutable, Common Methods, File IO]
Intermediate = [Comprehensions, Lambda, Collections Module, Map and Filter, *args and **kwargs, Inheritance, Advanced Class, Behaviour, PIP, Environments, Module Creation]
Advanced = [Decorators, Generators, Context Managers, Metaclasses, Concurrency, Parallelism, Testing, Packages, Cython]
Expert/Master = [Ask yourself - where are you using these skills? You must understand the low-level concepts of Python, such as the global interpreter itself. You must understand the building blocks of Python and play with them as if they were sand, manipulating them with ease and shaping them however you see fit]
I like the way u wrote that
thanks now I don't have to watch the whole vid
you forgot to writing it within a function, return it and wrap it withing a Decorator....tsk....beginner....
highly underrated comment. Thank you for the list format
Ur a G
this makes me feel like im getting somewhere, and points me where i need to learn thank you
Thanks! I can't tell you how much this helped me. 😊
Thanks so much!!
Tim has put the legit time and effort in just teaching us how to code….
He has sooo many tutorials and resources that help us so much!
In this video, he even wrote a list of the topics - which shows us that he really takes teaching us how to code seriously
The people who disliked this video should be ashamed
thank you so much, Tim. I was worried, not knowing where to go from watching tutorials that combined everything. I believe you've given me the path. Thanks
Great vid. Been teaching myself python for a few months and thankfully have all the beginner concepts down. Have a grasp of OOP, but almost nothing else at the intermediate level. Really helpful to know exactly what knowledge gaps I should look into bridging. Cheers!!
This helped a lot. My biggest problem learning python has always been not knowing what to do next. Thanks!
Thank you for doing this, been looking for a thorough "road map" for a while. I feel so lost when self learning sometimes, and this is infinitely useful to help with that.
I just came across your channel and I am LOVING IT!!!! Thank you so much for these videos. They are very clear and straight to the point, as everything should be!
Hey Tim. My college starts this 31st August, computer science major. You and your videos have helped me gain so much of knowledge about python. I could create my own game at this age, I could think and code by myself, I could do super cool tricks with this, and so many more things. Now I am even following your flutter tutorial series. And I'm sure all this effort will pay off soon! Thanks to you brother! Love from India ❤️
Best of luck at college! :)
@@TechWithTim super excited!
@anish dhandore can I ask the name of your college?
It's been 1 year, how's the difficulty?
It will. You are already doing the main thing that is required to be proficient in programming - going beyond the classroom and learning the topics you want to learn on your own. Keep that perspective up and I promise you x 1 billion you are going to thrive and succeed in the python programming industry.
You know he's Canadian by just how nice he is. Thousands of free resources for us poor college students who want to improve. Love it.
I just wish one day I'll be able to meet you in person and thank you for the difference you have made in our lives as a tech enthusiast.
You are my role model dude. ❤️
i dont think you understand how helpful you are. this might one of the most helpful vids to get you started with python. thank you!!
Great overview of skills.
It's always subjective what are basic, intermediate, advanced and expert skills but I really like the segmentation here. Thanks for sharing :-)
I was bored and didn't know what to do with python so I made a whole checklist about what I should learn, now I've got so many things to do. Thanks!
I'd grateful for this video. That helps me a lot to stop going around to learn Python. It's very helpful and clear information that I need to know. Thank you so much Tim for sharing steps by steps! Keep the good work
Thanks to this video, I have an action plan to improve my coding. I started coding in python but did'nt know how or where to improve from. This gives a clear and concise idea of improvement
Very nice advice! The only thing I would emphasize is that at all stages of the python programmer's journey, even from the beginner and intermediate level onward its good to be programming small and medium size projects with python, and possibly learn to write unit tests even as intermediate. Good project ideas for python could be things like small games like hangman, tictactoe, battleship sinking game (where you guess and try to sink the enemy ships), minesweeper, snake etc. Also for database integration it can be fun to make a text-adventure game in python and use sql database for saving the game.(or a file)
Just watched his tutorial for beginners. And DAMN He explains it so good. Learned more from is videos that are free than the courses i bought and still cant figure out what its al about. Give this man the respect he deserves couse he is really putting in the effort to teach people on a good and understandable way. May god bless this man. Keep up the good work!💪🏽👍🏽
This was the exact video I was looking for. Thank you.
I've not come across any such perfect guide anywhere ... The perfect guide for anyone who would wish to get into python programming or someone who is stuck and don't know the way forward. Or if you feel like you've done everything in python, it serves as a perfect guide. I could never thank you enough, Tim... But thanks a lot.
10Q Tim for your effort and time you put into teaching us. For some of us, the impact on our lives, you generate is so great that words can't even describe. Thank you again.
you should also have given Tim some time by writing 'Thank You' instead of '10Q'
Wow!
I really needed this video, after advancing to the intermediate stage, I just had no idea what to do next, thanks
God level: stack overflow
This is underrated
@@rpses9834 ?
@@rpses9834 any problems sir?
@@rpses9834 😳
This was very interesting. Good to get an overview over most of the important python concepts!
Great work! I'm definitely going to use this while learning
angry HTML coders disliking the video. This is massively helpful to let me know where I stand. I was doing class functions and thought I was pretty good. but some beginner concepts were not clear to me. I need to brush up on my skills more. thanks, Tim. You've been very helpful throughout the journey. Waiting for more amazing videos! Shoot us with a day of life of Tim. We'd definitely like to know you better.
Geez man, you saved me lol, my brain is fried from reading and taking notes on Python documentation. This video definitely helps me reinforce what I've learned so far. What a guy you are.
:) The fact that I know 95% of everything you describe in this video gives me confidence that I don't need to spend 4 years in a University when I can just focus on the other 5% and apply for an internship.
Can you pls tell me the platforms where you learnt these all
Enable subtitles at 14:13 he just told singing 🤣🤣 btw great explanation keep it up!
*Talks about beginner skills
Me: Ah this is easy
*Talks about intermediate skills
Me: Kinda hard but I think I got it
*Talks about anything above that
Me: What
println("Same here")
I don't even fully know the beginner ones but I understand almost all (concepts) of what he was talking about lol
I just don't know how to actually use them .
SAME XD
@O R yes, I know . I will be starting my vocational school for SE from 2021.
Thanks for the advice , appreciate it.
same bro
Happy to say I am at intermediate level currently! Thanks a lot for the video!
Hey Tim I have been watching a few of your videos over the past few days as I started learning python and I just wanna thank you so much for what you do. You are honestly the best and your videos are so awesome and you make it really easy to learn everything keep doing you do Tim.
3 years late so i js wanna ask did y ever commit to learning python?
You're doing a great work man. I absolutely admire you and your channel in general. I've been really focusing on programming (which I have been putting off for the past year) after watching your videos. Thank you man!
Thanks Tim,I needed this
Hey thanks for this. Im a huge fan. I watch u on alot of my lunch breaks at work. Ive been lost for the past couple weeks on what to learn, n this gives a little bit of a roadmap. Thank u fr
I like your simple way of explaining, thank you so much for your videos 😁
I work with microcontrollers and power systems -- yet I'm only an intermediate programmer.
I've learned out of desperation and necessity, but come to really appreciate it's power to automate and control systems.
Thanks for insight.
basics - 4:40
intermediate - 9:30
Advanced - 13:10
Thanks
Your guidelines to become a better programmer is detailed and specific.... Really appreciate your suggestions and methods. Thank you very much!
12: Python Projects from Beginner to master:
1: 4 function calculator
2: add a GUI to the calculator
3: to check if a number is prime
4: random anything generator
5: snake game with GUI
6: Web scraper
7: Make an image file compressor
8: create a file manger/viewer with gui
9: create your own python module.
10: Rest api
11: your own programing language
Master bonus: your own operating system (using Cython for C framework then python for functionality and GUI.)
ok..... i think programming language and operating system was not needed because that will take, like 15 years to make on your own
@@arnavtheawesome8576 I made a clone of visual basic in around 2 months and the operating system doesn't have to be good, late programmer Terry davis made his own (though basic) OS in way less time.
ohk.... forgive me still learning the basic and intermediate stuff in the video so don’t. Know a lot of things 😅
@@AtroGD hey but can you tell me what all did you use to make the programming language like did u use other languages or only python
@@arnavtheawesome8576 pure python code
Wow there is like gazillion information in this one video. This is actually helping me a lot to start my journey. Thank you
The MOST IMPORTANT thing is to PRACTICE DAILY
Yes. No 3 month long gaps where you don't do anything. Don't be like me.
Thanks for putting this together! it's very helpful especially for beginners to programming who need a path to follow . Great job!
This kid is the jesus christ of youtube! He's teaching us all of this for free, and he's very young! You will go to very high places bro! Keep up the great work.
Thank you so much. Your resources are easy for a 10-year-old. I am ten years and an intermediate python programmer. And you taught me so much!!
14:41
Tim : Maybe your writing REST API
Subtitle : Maybe your writing BREAST API
Me: Noice
I was hoping someone commented on that subtitle
😂
Amazing, a clear path to Python mastery.
Thanks a lot, Tim!
Guys join tech with Tim discord that's a very fun place to interact we can talk there🙂 it's very friendly place
discord.gg/pr2k55t :)
I joined over a month ago! It's a great server
The discord server is not so friendly
@@vaibhavp224 true, they were not so nice to me lol
@@joeljames2829 me too, but after a few days they were friendly again
This video is really great, I was not really able to find this information on "Learn Python Fast!" Websites after +1 year of programming in python and you just listed all of the things I wanted to know. Thanks!
Me: thinks I’m pretty good at python
Also me: all of the projects I’ve done haven’t even used all of the basic features he list
This is the most comprehensive guide for becoming a python developer
Hello Tim, I found one little typo:
11:12 You opened file as read only and then try to write to that file
'with open(.. ,"r") and then f.write()'
I've watched many python UA-camrs but I like the way you explain things you make programming easier and interesting.
Can we have a similar video like this for C# too please. Loved this one! :)
saw this video which led me to your 6-part series on OOP. Feel like I really understand it now. I've leveled up from beginner to intermediate!
This is amazing Tim! Thank you and God bless your heart!
This is excellent. I appreciate the breadth across the levels. Thanks Tim.
guys tim forgot the master grandmaster extreme master level, it only has 1 requirement *print(“Hello World!”)* most dangerous line of code ever
woooooooooooooooooooow!!!! thats proooooo!!! XD
Cringe
;c
How did you learn this
well, there is only 1 source. Trial and error with perfecting it with each font, and even pixel size. the line of code is still very dangerous and should not be played with
When you say "immutable vs mutable" at 3:30 you're actually talking about passing by reference vs by value.
Anywho, great video. This is just what I needed to pick up python quickly as an nth lang. 💙
Well yes and no, the concepts are closely related
@@TechWithTim well thats unhelpful. If you're gonna say "yes and no", explain where I'm right and where I'm wrong.
However I'm going to insist that you're still mixing up your names. When you give a function an object you are passing by reference, this you can change it by calling methods on it. When you pass a function a built in primitive type e.g. String, that variable is passed by value. All primitive types are immutable. Str = "dskdk" will not allow Str[0] = "a" but arr = [1,2] will allow arr[0] = 4.
Two separate concepts. The first passing by reference and passing by value, and closely related to functions. Meanwhile immutability is present event within the same exact function/scope.
finally mastered my hello world program
I've been trying to learn python well but I'm actually learn a wrong way. Now I know what I want to achieve and stick to it. Thank you Tim! You are amazing!!
I'm in the advanced level?..... Huh... That's both comforting and scary because I don't feel advanced.
Tell me the platforms where you learn those all
Thank you.
you have no idea how helpful this video is for me.
I literately was lost in this vast programming world.
I am 13 and he inspired me
same
I started learning by following your game guides. It's easier to learn when you can see your results in real time as the game slowly comes together. It helped me focus and made me feel like I was actually accomplishing something.
tkinter??
...For creating GUI applications after you learn programming concepts and core syntax.
@@RiversBliss no i'm saying why it isn't in any group
@@minusharma1738 Oh okay.
I really liked this. At it's minimum this taught me a few terms I was unaware of which makes furthering my skills easier. But it's so much more than that. Showed me holes in my knowledge, gave me a really solid and open ended roadmap, and did it all in a calm concise manner. Good job man keep the awesome information coming
"Me while the whole video"
Me: Sorry, what?"
At school, I learnt mainly beginner stuff, but when NEAs came round, I started learning most of the things listed in the intermediate and advanced stuff (like map, lambda, context manager, and CSV - which wasn't listed in this video). As of now, I've only been programming for about 8 months, in and out. A good thing to do is obviously watch Tim's tutorials, but to also make your own problems and make algorithms to solve them, cos in this way, it's easy to have the 'programmer influence' and learn topics out of your league.
Somebody: You can''t multiply strings
Le me: Print("Python goes b"+"r"*10)
Pythons goes brrrrrrrrrr
I wish my college programming course could recommend this video for programming learning roadmap.
Tim is great. His discord, however, is toxic AF.
why is his discord toxic?
@@codeout6512 join it and find out
@@truepachi1689 Well I did actually, and I really have no idea why you think it's toxic, which is why the question
Best blueprint I have ever come across.
Thanks for this video.
I am wierd, here is what I learnt today:
Basic: yep I basically know it
Intermidiate: I know most of it but not all so surly I won't know the advance leve-
Advanced: I know about 75% of it....
Expert: nope, I am not a expert.
I recommend these videos 💯 percent. I have the highest regard for you as a person and pythonista. Keep doing what you do, man. Well done.
A lot of people don’t have good professors or teachers that are instructing them on python. I’m grateful that I have Tim, the other on UA-cam, and a great professor to assist my learning. It’s an older video but thanks Tim
explained perfectly simple language i love it keep it up man nice job