Start a high paying tech career making $60k+/year with NO DEBT: coursecareers.com/a/techwithtim
@dipadityadas4 жыл бұрын
What about SOLID principle ?
@plusk3434 жыл бұрын
How would you rate yourself on a scale of 10 in python and why?
@urjitchakraborty58134 жыл бұрын
@@plusk343 he is probably a 10
@kurwacherry4 жыл бұрын
just curious...is python your favorite language?
@denilbhatt10054 жыл бұрын
Please make video on cython and async IO I think just these two topics are missing on your channel... Please 🙏🙏
@reversicle2124 жыл бұрын
How come people dislike this video when this man is calmly just helping you a lot with his experience...ppl today
@Lucifer-wd7gh4 жыл бұрын
Maybe they are java developer , scratching their head , trying to figure out thier error .....😂😂
@gumZ-ne4ru4 жыл бұрын
some stupid peoples who are jealous of his success and skills
@memy44604 жыл бұрын
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.
@sri-63744 жыл бұрын
@@memy4460 exactly
@Amoul244 жыл бұрын
I am Australia and accidentally disliked at first, probably just the other aussies who forgot :)
@Captainfeso4 жыл бұрын
I need pay tuition to this guy. He’s been my college 🤣🤣
@TechWithTim4 жыл бұрын
Donation link in description 😉
@ZackAngelSmith4 жыл бұрын
@@TechWithTim haha looool😏
@ZackAngelSmith4 жыл бұрын
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..
@Captainfeso4 жыл бұрын
@@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.
@ZackAngelSmith4 жыл бұрын
@@Captainfeso ?¿?¿¿??
@JUDOGAR3 жыл бұрын
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....
@MrCaglar19933 жыл бұрын
64 and learning python. Wow. And here i am 28 and crying whether i can learn after this age. Regards
@akunformalitas2 жыл бұрын
48 here, still learning Python, C# and some JS frameworks.
@tywinlannister48422 жыл бұрын
your english is great
@priteshugrankar68152 жыл бұрын
Your English is super clear and your zeal for learning is super inspiring. You are awesome!!👍👍👍
@video-hs5no2 жыл бұрын
Why are you learning instead of enjoy last leg of your life
@InfamousKurutta4 жыл бұрын
*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
@Ham-pb7pb4 жыл бұрын
This comment looks like a script itself.
@youaregod23824 жыл бұрын
Thanks
@martinwujkowski22704 жыл бұрын
pip actually stands for "Pip installs packages" :v
@InfamousKurutta4 жыл бұрын
@@martinwujkowski2270 Course, but you don't need to know what it stands for. I was stating what it is
@a.a88803 жыл бұрын
Thanks
@vmptrld4 жыл бұрын
#1 Skill to learn: How to look up things effectively and understand the doc of whatever API you decided to torture yourself with.
@borpie4 жыл бұрын
google api doc 😭
@miltondewey5734 жыл бұрын
So accurate.
@alice_in_wonderland424 жыл бұрын
@@borpie then you haven't seen Oracle, noob
@SmartCrime4 жыл бұрын
youtube api docs
@jaydencdq4 жыл бұрын
@@SmartCrime nasa insight api
@arimakishou45114 жыл бұрын
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]
@eleanoruwu4 жыл бұрын
I like the way u wrote that
@thesarfo14 жыл бұрын
thanks now I don't have to watch the whole vid
@federicobau86514 жыл бұрын
you forgot to writing it within a function, return it and wrap it withing a Decorator....tsk....beginner....
@doxed644 жыл бұрын
highly underrated comment. Thank you for the list format
@victorianjeri10003 жыл бұрын
Ur a G
@remzouzz4 жыл бұрын
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.
@Laevatei1nn3 жыл бұрын
What are the sources you learn from?
@akunformalitas2 жыл бұрын
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.
@thanhtran31362 жыл бұрын
@@akunformalitas you could try to use python with Selenium and testing framework like behave, pytest,... to do automate regression test for your web apps.
@sahilsagwekar2 жыл бұрын
I agree, it very difficult to judge yourself
@BlueTie77662 жыл бұрын
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?
@Geomaverick1244 жыл бұрын
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
@TechWithTim4 жыл бұрын
Couldn't agree more!
@najlaahassabelnabi88124 жыл бұрын
Is there any source where I can get projects that categorized by their difficulty levels?
@Geomaverick1244 жыл бұрын
@@najlaahassabelnabi8812 try udemy.com
@xenophone20064 жыл бұрын
@@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
@NikiruSan8 ай бұрын
@@najlaahassabelnabi8812Maybe I'm too late but 'Codewars & leetcode' are the best resources.
@theprogrammer19034 жыл бұрын
Tim is one of the best and i wish to be like him
@helloworld-vq9gq4 жыл бұрын
Be like yourself man
@gauravkonde2624 жыл бұрын
Just keep working bro nothing can stop you just be away from negative people
@unclepedro56214 жыл бұрын
Be yourself and never surrender
@wtfdoiputhere4 жыл бұрын
Stop wishing and start working
@RonakDamani4 жыл бұрын
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.
@dera_ng4 жыл бұрын
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 KZbinr and you are making the python community very proud (including me).... Thank you so much.... I am irrevocably grateful!
@deanjordan60533 жыл бұрын
I don't know why people look down on certain programming languages, it's the same concept, but with different syntax.
@AntoineKhater3 жыл бұрын
@@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
@talhatariqyuluqatdis3 жыл бұрын
God bless you brother
@demaxl7323 жыл бұрын
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
@faux47803 жыл бұрын
I admire people like you that, to even begin to learn programming must unfairly learn English, and you have a lovely vocabulary!
@zaddy59764 жыл бұрын
I'm in love with python and i wanna master it fr
@ashutoshtiwari43984 жыл бұрын
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.
@iscoto49142 жыл бұрын
how's your python learning going?
@ashutoshtiwari43982 жыл бұрын
@@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.
@iscoto49142 жыл бұрын
@@ashutoshtiwari4398 Cheers to you for a job well done! I would be appreciated, if you give some suggestions for a beginner like me:)
@cgenigma6752 жыл бұрын
@@iscoto4914 they never return :) ...i know its hard but thats the truth
@clerpington_the_fifth Жыл бұрын
"...from Master" ???
@lorgarmor58862 жыл бұрын
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.
@MrRockus2 жыл бұрын
Yeah I was wondering why they were missing. As they are important, along with how to debug code.
@suomynona44202 жыл бұрын
@@MrRockus Debugging is a whole tier by itself.
@YaakovGoodman4 жыл бұрын
Excellent, I would add Logging and Debugging as skills for Intermediate or Advanced.
@rpses98343 жыл бұрын
Couldn’t agree more!
@_abdul4 жыл бұрын
Level 5 : Create Python from Scratch.
@niinuetey98784 жыл бұрын
You blew me with that. Phew!!!
@arthur15964 жыл бұрын
Level 6: Create Own engine using Python/Cython
@blackcitadel374 жыл бұрын
Level 7: Hello World
@hackstarcool4 жыл бұрын
@@stavroskaragiannis1403 using Python :-D
@gaurishagrawal94043 жыл бұрын
Level 10: Learn how to ctrl c and ctrl v.
@flyingsquirrel32714 жыл бұрын
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!
@marckiezeender2 жыл бұрын
how about numpy, scipy, matplotlib, etc?
@flyingsquirrel32712 жыл бұрын
@@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.
@samsquare74 жыл бұрын
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!
@kensei42374 жыл бұрын
SamSquare same
@raynkata_70142 жыл бұрын
What are the sources you learned from?
@Deightt2 жыл бұрын
how is it now?
@muzzygully31442 жыл бұрын
how has it been going for u now?
@Michael-hr2jm Жыл бұрын
you definitely now have a ceo job at google right
@federicoundurragaalamos90934 жыл бұрын
Before this video I thought I was a totally newbie, found out I know most of the stuff in the intermediate level
@prometheus90963 жыл бұрын
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 :)
@LuCkYLaToRrE4 жыл бұрын
Respect for this person. Thanks Tim! You and Corey are the best Python instructors I've seen here on YT. Keep it up!
@elementalneil79674 жыл бұрын
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.
@AtroGD4 жыл бұрын
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.)
@arnavtheawesome85764 жыл бұрын
ok..... i think programming language and operating system was not needed because that will take, like 15 years to make on your own
@AtroGD4 жыл бұрын
@@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.
@arnavtheawesome85764 жыл бұрын
ohk.... forgive me still learning the basic and intermediate stuff in the video so don’t. Know a lot of things 😅
@arnavtheawesome85764 жыл бұрын
@@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
@AtroGD4 жыл бұрын
@@arnavtheawesome8576 pure python code
@captainfancypants49334 жыл бұрын
this makes me feel like im getting somewhere, and points me where i need to learn thank you
@DaFluffyOwl4 жыл бұрын
*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
@neillunavat4 жыл бұрын
println("Same here")
@sulizu01864 жыл бұрын
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 .
@arnavtheawesome85764 жыл бұрын
SAME XD
@sulizu01863 жыл бұрын
@O R yes, I know . I will be starting my vocational school for SE from 2021. Thanks for the advice , appreciate it.
@sip82873 жыл бұрын
same bro
@shikharpathak85104 жыл бұрын
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. ❤️
@MirMohammedAli246894 жыл бұрын
I was literally thinking about this and then Tim posts this video. Great work!
@rossli86212 жыл бұрын
I wish my college programming course could recommend this video for programming learning roadmap.
@AbdulMalik-o3s Жыл бұрын
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.
@paco5star Жыл бұрын
Watching this video 8 months ago not knowing a thing about program to now going to my first coding interview for a software engineering job, life is crazy😅
@anishdhandore58124 жыл бұрын
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 ❤️
@TechWithTim4 жыл бұрын
Best of luck at college! :)
@anishdhandore58124 жыл бұрын
@@TechWithTim super excited!
@kartheekvajrala24874 жыл бұрын
@anish dhandore can I ask the name of your college?
@parkour.11parkour582 жыл бұрын
It's been 1 year, how's the difficulty?
@clerpington_the_fifth Жыл бұрын
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.
@awwabasad11173 жыл бұрын
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
@PolineChan4 жыл бұрын
God level: stack overflow
@Sciencedoneright3 жыл бұрын
This is underrated
@Sciencedoneright3 жыл бұрын
@@rpses9834 ?
@Sciencedoneright3 жыл бұрын
@@rpses9834 any problems sir?
@Sciencedoneright3 жыл бұрын
@@rpses9834 😳
@HISENBERG007SRS4 жыл бұрын
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.
@mathgeniuszach4 жыл бұрын
:) 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.
@ShaikIrfan-ts1sg3 жыл бұрын
Can you pls tell me the platforms where you learnt these all
@GerbilDrip2 жыл бұрын
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!!
@chrismv44524 жыл бұрын
This helped a lot. My biggest problem learning python has always been not knowing what to do next. Thanks!
@darkdraconium4 жыл бұрын
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.
@Eldon_Dice4 жыл бұрын
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.
@hackstarcool4 жыл бұрын
The MOST IMPORTANT thing is to PRACTICE DAILY
@venmis1373 жыл бұрын
Yes. No 3 month long gaps where you don't do anything. Don't be like me.
@soothmusic43192 жыл бұрын
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
@anubhav16034 жыл бұрын
Guys join tech with Tim discord that's a very fun place to interact we can talk there🙂 it's very friendly place
@TechWithTim4 жыл бұрын
discord.gg/pr2k55t :)
@5staryzzz4 жыл бұрын
I joined over a month ago! It's a great server
@vaibhavp2244 жыл бұрын
The discord server is not so friendly
@joeljames28294 жыл бұрын
@@vaibhavp224 true, they were not so nice to me lol
@Sciencedoneright3 жыл бұрын
@@joeljames2829 me too, but after a few days they were friendly again
@swaggadougie3 жыл бұрын
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!💪🏽👍🏽
@steelpanther884 жыл бұрын
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)
@haythamchakiri8233 жыл бұрын
Basic - Variable. - Conditions - Chained conditionals - Operators - Control Flow - Loops and iterates - Basic Data structure - Functions - Mutable Vs immutable - Common methods - File IO Advance - Comprehensions - Lambda - Collections Modules - Maps and Filter - *args and **kwargs - Inheritance - Advanced Class - Behavior - PIP - Environments - Module Creation - Async Io Advance : - Decorators Generators - Context Managers - Meta classes - Concurrency - Parallelism - Testing - Packages - Cython
@_wise_one4 жыл бұрын
This was the exact video I was looking for. Thank you.
@muradqumizakis84283 жыл бұрын
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!!
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!!
@manas63404 жыл бұрын
Thanks Tim,I needed this
@juniz1982 Жыл бұрын
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
@DDThang-mv9mj3 жыл бұрын
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
@fabrizziogz4 жыл бұрын
Great advice. I'd only add external libraries (Numpy, Pandas, etc) at the intermediate level depending on what you need.
@Algovibes4 жыл бұрын
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 :-)
@mansbjork5721 Жыл бұрын
I really needed this video, after advancing to the intermediate stage, I just had no idea what to do next, thanks
@moonsblog19974 жыл бұрын
I like your simple way of explaining, thank you so much for your videos 😁
@albertovalencia9927 ай бұрын
Happy to say I am at intermediate level currently! Thanks a lot for the video!
@memy44604 жыл бұрын
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.
@utpalmohane14162 жыл бұрын
you should also have given Tim some time by writing 'Thank You' instead of '10Q'
@DominicVictoria2 жыл бұрын
Wow!
@purplemosasaurus59873 жыл бұрын
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!
@Nobody-yd9ng4 жыл бұрын
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.
@obm_jay Жыл бұрын
3 years late so i js wanna ask did y ever commit to learning python?
@prathikhanji32323 жыл бұрын
Your guidelines to become a better programmer is detailed and specific.... Really appreciate your suggestions and methods. Thank you very much!
@SkyNick3 жыл бұрын
Can we have a similar video like this for C# too please. Loved this one! :)
@jackma124 жыл бұрын
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.
@RameenFallschirmjager4 жыл бұрын
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.
@adriananslow2 жыл бұрын
This is excellent. I appreciate the breadth across the levels. Thanks Tim.
@pythonicperson72164 жыл бұрын
guys tim forgot the master grandmaster extreme master level, it only has 1 requirement *print(“Hello World!”)* most dangerous line of code ever
@asimocloud57364 жыл бұрын
woooooooooooooooooooow!!!! thats proooooo!!! XD
@ΚωνσταντίνοςΚλωνάρης4 жыл бұрын
Cringe
@pythonicperson72164 жыл бұрын
;c
@comradered81254 жыл бұрын
How did you learn this
@pythonicperson72164 жыл бұрын
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
@bosstareq92 жыл бұрын
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.
@cortex60654 жыл бұрын
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
@cbolivar35184 жыл бұрын
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!
@fadamitanolatomiwas.miguel66264 жыл бұрын
This is amazing Tim! Thank you and God bless your heart!
@larslover65592 жыл бұрын
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
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 KZbin, and a great professor to assist my learning. It’s an older video but thanks Tim
@twentysixjazz4 жыл бұрын
14:41 Tim : Maybe your writing REST API Subtitle : Maybe your writing BREAST API Me: Noice
@Sciencedoneright3 жыл бұрын
I was hoping someone commented on that subtitle
@abcdabcd86053 жыл бұрын
😂
@Vyap27024 жыл бұрын
Wow there is like gazillion information in this one video. This is actually helping me a lot to start my journey. Thank you
@MrEloska4 жыл бұрын
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()'
@willorwig18243 жыл бұрын
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
@theprogrammer19034 жыл бұрын
I am 13 and he inspired me
@techgamerzonefirst4 жыл бұрын
same
@himanshuharsh78393 жыл бұрын
This is the most comprehensive guide for becoming a python developer
@berndo30384 жыл бұрын
I'm in the advanced level?..... Huh... That's both comforting and scary because I don't feel advanced.
@ShaikIrfan-ts1sg3 жыл бұрын
Tell me the platforms where you learn those all
@7a53vinay43 жыл бұрын
explained perfectly simple language i love it keep it up man nice job
@shaunakn58814 жыл бұрын
finally mastered my hello world program
@Palmtreeshinobi2 жыл бұрын
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!
@Vijwal4 жыл бұрын
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.
@islamh6042 Жыл бұрын
Amazing, a clear path to Python mastery. Thanks a lot, Tim!
@minusharma17384 жыл бұрын
tkinter??
@RiversBliss4 жыл бұрын
...For creating GUI applications after you learn programming concepts and core syntax.
@minusharma17384 жыл бұрын
@@RiversBliss no i'm saying why it isn't in any group
@RiversBliss4 жыл бұрын
@@minusharma1738 Oh okay.
@SergioArroyoSailing3 жыл бұрын
Thanks for putting this together! it's very helpful especially for beginners to programming who need a path to follow . Great job!
@truepachi16894 жыл бұрын
Tim is great. His discord, however, is toxic AF.
@codeout65124 жыл бұрын
why is his discord toxic?
@truepachi16894 жыл бұрын
@@codeout6512 join it and find out
@codeout65124 жыл бұрын
@@truepachi1689 Well I did actually, and I really have no idea why you think it's toxic, which is why the question
@RobertWei-p1l2 жыл бұрын
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!!
@PhamousBoi4 жыл бұрын
Somebody: You can''t multiply strings Le me: Print("Python goes b"+"r"*10)
@programmer40474 жыл бұрын
Pythons goes brrrrrrrrrr
@mubasharmb12 жыл бұрын
I've watched many python KZbinrs but I like the way you explain things you make programming easier and interesting.
@Ahm.z3213 жыл бұрын
"Me while the whole video" Me: Sorry, what?"
@helovesdata84833 жыл бұрын
Videos like this is just what self learners need. I was all over the place when I started.
@suryac8502 жыл бұрын
I am a Java back-end developer and recently started learning Python to do Leetcode and save time in interviews. This is a useful guide to get in depth into Python and become a Professional. Thanks Tim
@new_beginning25714 жыл бұрын
currently studying mechatronics engineer...coming from a mechanical background...learning programming languages in-depth is challenging, but slowly reaching there.........the video did help me to build a roadmap. ....great video Tim
@adarshtiwari73954 жыл бұрын
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!
@_xylotus_4 жыл бұрын
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!
@NikhilKumar-cq7bm9 ай бұрын
I have watched 26 videos regarding this Topic Trust me this is the most useful video
@alexkerasidis2 жыл бұрын
Just realised I am not a beginner anymore! WOOOOOOOO!
@DirkKunert2 жыл бұрын
Great video! Being a Quality Assurance Manager, I recommend to move Test Driven Development to the Basic Skills.
@suomynona44202 жыл бұрын
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.