Intermediate Python Programming Course

Поделиться
HTML-код
  • Опубликовано: 31 июл 2024
  • Take your Python skills to the next level with this intermediate Python course. First, you will get a review of basic concepts such as lists, strings, and dictionaries, but with an emphasis on some lesser known capabilities. Then, you will learn more advanced topics such as threading, multiprocessing, context managers, generators, and more.
    💻 Code: github.com/python-engineer/py...
    🎥 Course from Patrick Loeber. Check out his channel: / @patloeber
    🔗 Written Tutorials from Patrick: www.python-engineer.com/cours...
    ⭐️ Course Contents ⭐️
    ⌨️ (0:00:00) Intro
    ⌨️ (0:00:56) Lists
    ⌨️ (0:16:30) Tuples
    ⌨️ (0:29:49) Dictionaries
    ⌨️ (0:42:40) Sets
    ⌨️ (0:58:44) Strings
    ⌨️ (1:22:50) Collections
    ⌨️ (1:36:43) Itertools
    ⌨️ (1:51:50) Lambda Functions
    ⌨️ (2:04:03) Exceptions and Errors
    ⌨️ (2:20:10) Logging
    ⌨️ (2:42:20) JSON
    ⌨️ (2:59:42) Random Numbers
    ⌨️ (3:14:23) Decorators
    ⌨️ (3:35:32) Generators
    ⌨️ (3:53:29) Threading vs Multiprocessing
    ⌨️ (4:07:59) Multithreading
    ⌨️ (4:31:05) Multiprocessing
    ⌨️ (4:53:26) Function Arguments
    ⌨️ (5:17:28) The Asterisk (*) Operator
    ⌨️ (5:30:19) Shallow vs Deep Copying
    ⌨️ (5:40:07) Context Managers
    --
    Learn to code for free and get a developer job: www.freecodecamp.org
    Read hundreds of articles on programming: freecodecamp.org/news

Комментарии • 1,8 тыс.

  • @dp.9130
    @dp.9130 3 года назад +3449

    Finally, course which doesn't cover creating variables, and writing loops for the millionth time...
    THANKS!

    • @patloeber
      @patloeber 3 года назад +148

      Glad you like it :)

    • @xtra9996
      @xtra9996 3 года назад +5

      Agree!

    • @nooptiui
      @nooptiui 3 года назад +40

      Well it's for intermediates Sooo....they should already know that

    • @soupnoodles
      @soupnoodles 3 года назад +14

      I think he's being sarcastic ;-;

    • @nooptiui
      @nooptiui 3 года назад +76

      @@soupnoodles He's definitely not

  • @muhammadasadhaider6893
    @muhammadasadhaider6893 3 года назад +3889

    word of advice to everyone, never name your dictionaries "myDict". Leads to some really awkward scenarios in interviews when you have to explain your code.....

    • @russell4021
      @russell4021 3 года назад +87

      HAHAHAHAHAHAHAHA!

    • @rafaelwendel1400
      @rafaelwendel1400 3 года назад +109

      The guy from the video messed alot with his dict

    • @oliasharmeen3338
      @oliasharmeen3338 3 года назад +81

      i bet your dict was really big

    • @_intruder
      @_intruder 3 года назад +355

      "So let's say mydict.pop()" 😜

    • @julianjohnmert8658
      @julianjohnmert8658 3 года назад +106

      I don't know what's better, these lessons or this comment. XD

  • @elyakimlev
    @elyakimlev 2 года назад +65

    I watched the whole thing in about 2 weeks, leaving the browser tab open, and watching 1-2 sections every day. Thanks a lot!

  • @nariver1
    @nariver1 2 года назад +196

    I finished this course and I plan to keep it in my playlists as every topic was directly explaining without excessive details. Really enjoyed the course.

    • @ThalassaYamir
      @ThalassaYamir Месяц назад

      Can you send me the link for your playlist? If it's good for beginners

  • @justforwork4310
    @justforwork4310 3 года назад +111

    Just finished the lesson. Man was this far more in depth than what I was expecting. I appreciate you teaching us step by step how to make the most of our systems while coding and showing how we can modify functions. This was a great reference that I expect to look back on for a review.

    • @historyrogue5056
      @historyrogue5056 3 года назад

      what's next?

    • @mwah5980
      @mwah5980 2 года назад

      Learn python with me
      ruclips.net/video/5lLkLi9SAlA/видео.html

    • @user-rf4vc7mt4d
      @user-rf4vc7mt4d Год назад +3

      @@historyrogue5056 8 buried, 0 found

  • @moastlee
    @moastlee 3 года назад +112

    Really great video for interviews recap! Just want to point out one thing: it is not recommended to "share" value, i.e, memory, in multiprocessing procedure, because it is relatively inefficient to try to access a data from the RAM by different processors at the same time. In order to maximize the ability of the multiprocessing technique, you'll usually split a relatively large dataset into subsets, and hand each of the subsets to different processors and squeeze out all the calculation resource per processor to do whatever complex calculating process you want for the dataset, and finally merge all the sub-results back into the overall result (this is also why people say multiprocessing is for CPU-bound task). Therefore, using "Lock" for avoiding race conditions is actually "mimicking" threading behavior.
    That being said, the multiprocessing module provides several data-exchange methods if your "data sharing" situation is actually for cross-process communication, or update a global factor for the rest of the processor to use.
    There are a lot of details in the documentation of the python multiprocessing module, I basically just rephrase them with adding some of my experience in using these techniques in real life. Hope it is helpful!

    • @mwah5980
      @mwah5980 2 года назад

      Learn python with me
      ruclips.net/video/5lLkLi9SAlA/видео.html

  • @tageray975
    @tageray975 2 года назад +7

    I love the way you're explaining! Decent speed, easy to understand. Perfect! Keep up!

  • @digiworld1212
    @digiworld1212 Год назад +33

    Keep doing the great work, this world needs more of it.

  • @lukeroneevsingh
    @lukeroneevsingh 3 года назад +66

    I did a few different python courses and never really understand some of the syntax. I built some projects too and after watching this video I have started to understand a lot more Python. Honestly, this is amazing. Thanks for this, I know I will keep visiting again to recap the concepts. The video is so easy that even a beginner will understand what is happening. It enables someone from beginner level to enter intermediate so easily. I wish I saw this video before!! really hope there is more videos like this. Thank You so much

    • @GrantH2606
      @GrantH2606 Год назад +1

      What sort of projects do you build? I'm in the process of learning all of this stuff, but I have no idea what sort of projects will help me learn further - I have no imagination

  • @espressoshot21
    @espressoshot21 3 года назад +31

    Thank you so much for this awesome tutorial! I've been getting bored with all the beginner's python tutorials, and this was right on par with good amount of new materials learned!

    • @patloeber
      @patloeber 3 года назад +3

      I'm really happy you enjoyed it!

  • @medsmati2063
    @medsmati2063 3 года назад +31

    I love the way explain things; simple and accurate; directly to the objective. Thank a lot.

  • @malharnandurkar890
    @malharnandurkar890 3 года назад +7

    Thank you FFC and all the wonderful instructors, for this channel. Exactly what you want to watch.

  • @riverofsoup
    @riverofsoup 2 года назад +3

    16 minutes into the video and I already doubled the notes that I have in relation to lists. Thank you so much!

  • @liamwood3357
    @liamwood3357 2 года назад +10

    Thank you so much for this. I have started and stopped more Python courses over the last few years than I can count. This is the first where I've gone from start to finish. Great pace, great concept introduction and explanation, you're helped me so much my man.

  • @lowfidelitylounge
    @lowfidelitylounge Год назад +8

    Love how this course gets straight to the point. Can't wait to finish it. Also, was mind blown that tuples are more efficient than lists. Never would have thought of that.

  • @TheTrace8
    @TheTrace8 Год назад +253

    I'm right at half-way through and I feel like this is some of the most efficient learning I've ever done. I have done 2 or 3 other beginner Python courses before, so I'm pretty set up for this level. I'm hoping the next half is as good as the first.

  • @matthewbrightman3398
    @matthewbrightman3398 3 года назад +31

    This was OUTSTANDING! I watched it over about three weeks, when I had time. I learned so much. Next onto Numpy from the same author.

  • @andrewmaksimovich2432
    @andrewmaksimovich2432 2 года назад +4

    Week 2 of watching this tutorial and I'm almost halfway through. Definitely learning a lot

  • @Errors404
    @Errors404 3 года назад +2

    Thanks so much , its my first time an actual intermediate course is available on search .

  • @anonymous_anonymity
    @anonymous_anonymity 2 года назад +5

    Danke Schön!! Awesome video. Even though I have years of professional experience with Python, still I found this video useful. Applauds for the great work.

  • @yahomuse9999
    @yahomuse9999 3 года назад +319

    title: Intermediate python course
    first 5 seconds: Hey guys welcome to this advanced python course

  • @danieloehler2494
    @danieloehler2494 11 месяцев назад

    great job, Patrick! Worthy to follow to the end and to repeat every single step.

  • @ansumanroutray1118
    @ansumanroutray1118 11 месяцев назад

    Amazing course! The tutor really went to tech topics briefly. Never had this much clarity before.

  • @endtropi
    @endtropi 2 года назад +5

    After a lot of hours of playback this tutorial, i am bit wiser now. I've learned a lot of intermediate stuff about python, i took some notes, hope to find some projects to do and use all this knowledge. Thank you for the great tutorial! Really helps!

  • @aditnegi2577
    @aditnegi2577 3 года назад +180

    Thanks this is gonna help with Interviews, too many basic courses on python, this really helped even for someone like me who has been coding in python since 2015.

    • @patloeber
      @patloeber 3 года назад +13

      That's nice to hear :)

    • @nasus3274
      @nasus3274 3 года назад

      good luck! >:D

    • @KumarHemjeet
      @KumarHemjeet 3 года назад

      You in python group on telegram ?

    • @amraboughazala5986
      @amraboughazala5986 3 года назад +6

      @@gingertankguy advise to go through the book
      www.linuxlinks.com/wp-content/uploads/2019/07/Fundamentals-Computer-Programming-C-Sharp.pdf
      I am learning coding on my own and such a book is a shift from a level to another.

    • @PaulRamnora
      @PaulRamnora 3 года назад +1

      @@amraboughazala5986 Thanks for the C# book link...; very deeply appreciated! ;-)

  • @richardwilson5769
    @richardwilson5769 Год назад +1

    I'm halfway through and it has been very insightful so far. Really great tutorial.

  • @kabeertariq5940
    @kabeertariq5940 2 года назад

    Amazing course! Thank you so much for uploading this!

  • @user-in3ye3nk8f
    @user-in3ye3nk8f 3 года назад +7

    I really appreciate this channel and fantastic coding mates who support us.
    Big applause from Japan 🇯🇵

  • @jagprani
    @jagprani 3 года назад +4

    Thanks in advance... Was waiting for this.

  • @davidmchutchison3041
    @davidmchutchison3041 2 года назад +2

    Tremendous! I've watched only the first half-hour so far but I could see from the start that this tutorial is laid out thoughtfully, giving very clear and concise explanations. This old "mainframe" programmer learning Python for fun is looking forward to the rest!

  • @Maharanasunil01
    @Maharanasunil01 3 года назад +5

    Thank you for this course!!❤️

  • @SimpleBanana
    @SimpleBanana 3 года назад +8

    Whoa. I just finished the beginner tutorial and now this one is up.

  • @kirutheesg3957
    @kirutheesg3957 3 года назад +3

    We all should should thank this teacher for making this video so understandable and thank free code camp for making it free. Thank you

  • @wesg01
    @wesg01 2 года назад

    Awesome tutorial! Really really appreciate your work.

  • @stusoduncan
    @stusoduncan Год назад +5

    I'm very experienced with Python but i picked up a lot of little tips and improvements from the course. Excellent course, thankyou so much
    👍

  • @adityanarayanrai7689
    @adityanarayanrai7689 3 года назад +594

    I will wait for the expert course now.

    • @muhammadaman9010
      @muhammadaman9010 3 года назад +119

      @@FreeJobClub good by then maybe your english will improve.

    • @parryhotter9333
      @parryhotter9333 3 года назад +4

      @@muhammadaman9010
      Goodbye*...

    • @mikailu8964
      @mikailu8964 3 года назад +27

      @@parryhotter9333 "Good, by then maybe your english will improve". He was right the first time mate.

    • @parryhotter9333
      @parryhotter9333 3 года назад +4

      @@mikailu8964 no he wasn't, because then he would've used a comma.. mate

    • @Spectrum16
      @Spectrum16 3 года назад +36

      @@parryhotter9333 I'm not sure why you're so insistent on their grammar being correct considering they were merely referencing the fact that the beginners course was made 2 years ago. Thus by using pattern recognition of...literally one instance then you can joke the next will be another 2 years.
      Nobody was complaining.

  • @alpanachaphalkar3422
    @alpanachaphalkar3422 Год назад +1

    Thanks y lot for creating the video!! All examples demonstrated in the video are very useful to understand the coding concepts. Very importantly, instructor Patrick also explained that which datatype is more efficient.

  • @Diego-Desde-Argentina
    @Diego-Desde-Argentina 7 месяцев назад

    Great content! Very well organized and clear explanantions!!!! Perfect level of detail. Great for the intermediate level! Thank you for your contribution to the Python community!

  • @merrymouse2008
    @merrymouse2008 3 года назад +3

    One of the most helpful videos about Python I watched so far =) Thanks a lot!

  • @lafamilliaHP
    @lafamilliaHP 3 года назад +7

    Full respect and keep it that way! I am old-school, running Ubuntu (still) on 32bit Intel CPU (as I love it due to stability), and I just ... Adore your tutorials and Python as well as SQL tutorials made me Jr. Full Stack Developer basically. Keep this way and in the name of thousands of hundreds of IT heads here with golden awards from International Championships in coding/ programming and engineering please give us more and more and go with that "normal" language with common sense implemented. Respect for effort and if I have had money to donate I would!

  • @rolinejohnaguilar5272
    @rolinejohnaguilar5272 2 года назад

    I learn so much concepts that I havent got into depth with Python. Thanks a lot !!

  • @mrfreddie04p
    @mrfreddie04p Год назад

    Very good! Clear explanations and straight to the point.

  • @kennyking9667
    @kennyking9667 3 года назад +5

    Thanks I was always stuck in between. Thanks alot

  • @Sansa-Academy
    @Sansa-Academy Год назад +5

    Very good tutorial. Finished it in 3 days. Excellent tutorial. Gave me an in-depth understanding of python, and how to optimize prformance using processes like multithreading and multiprocessing

    • @amirovuz
      @amirovuz Год назад

      Hi! I am watching this tutorial now. I have some misunderstanding in some topics, Could I disscuss with you?

  • @neilkumar2075
    @neilkumar2075 2 года назад

    I am going to use this as an everyday guide for when I am building apps, or just messing around with Python.
    Great tutorial. THANKS

  • @carlosmspk
    @carlosmspk 2 года назад

    The way he rolls his tongue when he says "lock" is so off putting! :D
    Good job on the tutorial, great stuff!

  • @pestrinmarco
    @pestrinmarco 3 года назад +15

    I will wait for the expert course now!!!

  • @ElianMrl
    @ElianMrl 2 года назад +3

    This course is perfect!! I'm currently watching the beginner's python tutorial (7 hours of 13 hours). After I get my certification, I will start this course.

  • @hunterallen4521
    @hunterallen4521 2 года назад

    This is so incredibly helpful thank you so much!

  • @anzo.p
    @anzo.p 3 года назад

    You helped me understand Python much better - great demo of the fundamentals of much of the magic

  • @aniketgope1502
    @aniketgope1502 3 года назад +4

    Waiting for the expert course!
    Thank you for such amazing content!!!

    • @patloeber
      @patloeber 3 года назад +1

      Glad you like the content :)

  • @hungarianTEK
    @hungarianTEK 3 года назад +823

    Every time he said "my dict" i chuckled like a kid in grade school
    I'm 33

  • @commentator1338
    @commentator1338 2 года назад +2

    Thank you for your time and effort Patrick this video was just perfect it really helped me to better understand python but I wish for future videos you would consider using some sort of zooming really would be great

  • @sushmajadhav6642
    @sushmajadhav6642 2 года назад

    someone who even taught us about errors and exceptions. Thanks for this great video !

  • @samadansari6154
    @samadansari6154 3 года назад +7

    I don't what RUclips do but i get the recommended video, exact as i needed 🔥🔥

  • @itsdinguskhan4403
    @itsdinguskhan4403 3 года назад +232

    For anyone new to Python who is curious, There's a way to shorten checking whether or not an element is in a list/tuple. Instead of
    if "banana" in mylist:
    print("yes")
    else:
    print("no")
    , you can just use
    print("banana" in mylist).

    • @patloeber
      @patloeber 3 года назад +10

      good tip!

    • @suche_cz
      @suche_cz 2 года назад +35

      lol, but the result is different
      first gives you "yes" or "no"
      second True or False

    • @saumyakhati5612
      @saumyakhati5612 2 года назад +23

      If you specifically wanted to print 'yes' or 'no', you could also shorten it by using ternary operators: print('yes') if 'banana' in mylist else print('no')

    • @anonym1323
      @anonym1323 2 года назад +3

      This prints the bool tho, not yes or no

    • @theguy6326
      @theguy6326 2 года назад +3

      I honestly thought it would give back an error if there is no banana

  • @vortax521
    @vortax521 2 года назад

    Wow! thank you for this wonderful course, I'm surprised that you make all of these amazing videos for free.

  • @ctpalli
    @ctpalli 3 года назад

    Thank you for this tutorial, man!

  • @eligorniak9699
    @eligorniak9699 3 года назад +3

    Neither watched the video but I already push the LIKE button!!!👏👏👏

  • @babajideodusanya8843
    @babajideodusanya8843 3 года назад +116

    Thanks for this wonderful free course. I really appreciate it.
    I feel the logging topic could have been better if it was slowly introduced in terms of it's importance and application to software development.
    Nonetheless, good job!

    • @ZardozBeats
      @ZardozBeats 2 года назад +1

      I get an error in the last part. Would you have any idea how I can solve this? I tried to google it, it was challenging to find for me.
      Traceback (most recent call last):
      File "/Users/Jeroen/PycharmProjects/pythonProject/IntermediateCourse/10_logging_3.py", line 6, in
      logging.config.fileConfig('logging.conf') #load the config file
      File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/logging/config.py", line 80, in fileConfig
      _install_loggers(cp, handlers, disable_existing_loggers)
      File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/logging/config.py", line 227, in _install_loggers
      section = cp["logger_%s" % log]
      File "/Library/Frameworks/Python.framework/Versions/3.9/lib/python3.9/configparser.py", line 963, in __getitem__
      raise KeyError(key)
      KeyError: 'logger_simpleExample #define root and simpleExample logger'

    • @jahmovementempaya1084
      @jahmovementempaya1084 2 года назад +13

      Seriously I don't even know what to do with the Logging, and because of that, I still can't understand it

    • @kaveen_93
      @kaveen_93 2 года назад +8

      @@jahmovementempaya1084 IMO 1) the most important use of Logging is to print the output into a file, which you cannot do with a normal print() statement. Also, logging is lightweight compared to pandas.export_to_csv() etc. 2) the second import use case is by managing the log levels (DEBUG, INFO, WARNING, etc.). For example: you might want to print onto console only the necessary output and hence you can set streamhandler to warning level (and above); on the other hand you might want to print every output onto a file and hence you can set filehandler to debug (and above).
      The simplest technique is to start replacing print statements with loggers and you will see the benefits

    • @neeraj6197
      @neeraj6197 Год назад

      Yeah same here

  • @ramganapathy3298
    @ramganapathy3298 3 года назад +1

    Extremely useful Python course. Thanks for sharing!!

  • @maulikpatel3975
    @maulikpatel3975 2 года назад +1

    Superb !! Must watch python enthusiast. Thank you for creating this.

  • @krazyteetp5803
    @krazyteetp5803 3 года назад +9

    Thank you! such a great valuable course... waiting for the Expert Python Programming Course

  • @MrKareem722
    @MrKareem722 3 года назад +6

    Thank you so much I was looping in to open and load 2 files then find what are the common values in both files and by loading it to a set it reduced the time from 12+ sec's to surprisingly 0.013 :D

  • @jamesmbouende-poutcheu1369
    @jamesmbouende-poutcheu1369 3 года назад +2

    Thank you so much this is just what I was looking for.

  • @erikfrits6553
    @erikfrits6553 3 года назад +2

    Wow, I haven't had much time yet to see it all but just by scrolling through I have already seen a great value in this. Thanks!

  • @brumarul7481
    @brumarul7481 3 года назад +3

    Can't wait for the advanced python course :)

    • @foxlighted
      @foxlighted 3 года назад

      chat.whatsapp.com/HpMxp1vdERUFVxbamKRC4L
      This group is for python language beginners , intermediate and experts. ....for interactive learning and clearing each others doubts

  • @raman7421
    @raman7421 3 года назад +41

    ⭐️ Course Contents ⭐️
    ⌨️ (0:00:00) Intro
    ⌨️ (0:00:56) Lists
    ⌨️ (0:16:30) Tuples
    ⌨️ (0:29:49) Dictionaries
    ⌨️ (0:42:40) Sets
    ⌨️ (0:58:44) Strings
    ⌨️ (1:22:50) Collections
    ⌨️ (1:36:43) Itertools
    ⌨️ (1:51:50) Lambda Functions
    ⌨️ (2:04:03) Exceptions and Errors
    ⌨️ (2:20:10) Logging
    ⌨️ (2:42:20) JSON
    ⌨️ (2:59:42) Random Numbers
    ⌨️ (3:14:23) Decorators
    ⌨️ (3:35:32) Generators
    ⌨️ (3:53:29) Threading vs Multiprocessing
    ⌨️ (4:07:59) Multithreading
    ⌨️ (4:31:05) Multiprocessing
    ⌨️ (4:53:26) Function Arguments
    ⌨️ (5:17:28) The Asterisk (*) Operator
    ⌨️ (5:30:19) Shallow vs Deep Copying
    ⌨️ (5:40:07) Context Managers

  • @ChimaevMikelson
    @ChimaevMikelson 8 месяцев назад +1

    Appreciate this !! real intermediate stuff!

  • @amraboughazala5986
    @amraboughazala5986 3 года назад +3

    In the common video for multiprocessing,
    we used p.join() and t.join()
    but later when we had separate videos for threads and multiprocessing in the queues example,
    we didn't use t.join() but used q.join()
    while in the multiprocessing example we used p.join() as well as "while not q.empty()" which is replacing the q.join()
    What is the difference?

  • @vladimirkorshunov7734
    @vladimirkorshunov7734 2 года назад +47

    A thing to notice:
    A list (set, tuple, or dict) that contains objects can't be copied with just copy() function. (It can be, but you will only copy references to objects, not objects itself)
    So modification of an object in one list will affect another.
    deepcopy function should be used for this king of copying.

  • @mrninjabeast1914
    @mrninjabeast1914 3 года назад

    It’s really a satisfaction to see lectures about programming

  • @ParadymShiftVegan
    @ParadymShiftVegan Год назад +2

    This course is hella underrated. Deserves many more views!

  • @TheFootballPlaya
    @TheFootballPlaya 3 года назад +3

    give yourself more time to explore some of these topics in your own perspective. figure out how you learn. learn to google -> learn the basics -> learn basics of OOP (classes / attributes / methods / inheritance) -> learn about modules / libraries / packages -> learn to use the help() function & how to read documentation -> then come to this video. appreciate the overview, get the names of the things you need to know -> give yourself more time to explore these topics in your own perspective .... and the cycle continues.

  • @suyash4891
    @suyash4891 3 года назад +3

    Finally the quality is fixed 👌
    Thx FCC

  • @JominJose
    @JominJose Год назад +1

    Learnt a lot from this video, thank you so much Patrick and freeCodeCamp!

  • @NandoDevlop
    @NandoDevlop 3 года назад +1

    estou quase acabando o curso, estou em threading, coisa mais útil do universo, obrigado a vcs por terem disponibilizado esse conteúdo incrivel

  • @kaszatus2
    @kaszatus2 2 года назад +3

    It went smoothly till logging, Json. Bit
    Could have some more elaboration on what it is and what we use for. Generally it's easier to remember when you understand usage of something. You guys done a great load of job with those courses

  • @syedabdul343
    @syedabdul343 3 года назад +3

    Thanku Soo much free code camp team..I learned SQL and python from this ..I just love the explanation and it excites me to learn more from you... please can you make video on competitive programming through python.. there are no video on CP through python..

  • @jsonkweamie8862
    @jsonkweamie8862 3 года назад

    Thanks so much for sharing this tutorial. It's so helpful.

  • @Yjquaranta
    @Yjquaranta 2 года назад +1

    Thanks! Now we need a Advanced Python Programming Course!

  • @medsmati2063
    @medsmati2063 3 года назад +4

    I want to ask a question about the example of threads with lock.
    Since we have used lock, the 2 threads will not be executed in parallel but sequencely (the 2nd thread waits till the 1st has finished); thus, the use of threads has no sense in this example, am I right ? or I didn't understand well ?

  • @shibusharma9421
    @shibusharma9421 3 года назад +7

    Thanks for this just was searching this an hour ago and you uploaded this🤣🤣😹😹what a timing

    • @patloeber
      @patloeber 3 года назад +1

      I'm glad you like the content :)

  • @dinkletonne
    @dinkletonne 2 года назад

    this channel is a fucking gem , i am not even kidding , i love yall , thanks for everything !

  • @rhythmbhandari8549
    @rhythmbhandari8549 3 года назад +1

    Hey Patrick , the video was quite helpfull and i really appreciate that
    Thanks for uploading such a good content

  • @Mitroiul
    @Mitroiul 2 года назад +8

    I can't believe how easy Python is after only coding in C++ and C#. So little text to write in order to achieve things that would've taken x5 more lines of code in C-based languages.

  • @MilliardoPeacecraft590
    @MilliardoPeacecraft590 3 года назад +107

    I love how the video link says intermediate python then after clicking I’m greeted with the video displaying “Advanced Python” ha ha.

    • @Ragnarok540
      @Ragnarok540 3 года назад +12

      What's next? An advanced Python video that's actually about obfuscated Python?

    • @simonepaudice8145
      @simonepaudice8145 3 года назад +2

      you're funny like a snake in the trousers

    • @georgekumidanquah3338
      @georgekumidanquah3338 3 года назад +2

      Is der a difference btn dem?

    • @heyiamdhana
      @heyiamdhana 2 года назад

      Hahaha

  • @mrbeanarabic8677
    @mrbeanarabic8677 3 года назад +2

    i learned a a lot from this full course ..thanks soo much for your effort..i advice this course for everyone

  • @bigpimpatl
    @bigpimpatl 2 года назад

    Thank you for taking the time to create this

  • @heroricspiritfreinen38
    @heroricspiritfreinen38 3 года назад +90

    I just started the beginner one
    Was feeling good about myself
    Then I see this

    • @youtubificationizer
      @youtubificationizer 3 года назад +12

      Practice practice, read official documentation, practice some more

    • @nasus3274
      @nasus3274 3 года назад +25

      Realize that you learned more then most of your friends in 8 hours and its all free :D good luck in your journey I guess

    • @YoungDreTheSauceGod
      @YoungDreTheSauceGod 3 года назад +1

      same

    • @reggie7807
      @reggie7807 3 года назад +8

      i finished it about 3 weeks ago and jumped to this like wholy fuckt his is complicated

    • @dadestor
      @dadestor 3 года назад +1

      @@reggie7807 practice basics some more, get comfortable with them and then come back to this course

  • @yuan.pingchen3056
    @yuan.pingchen3056 3 года назад +13

    OMG, 6 hours video without any subjects, my stamina can't afford this.

  • @SRC692
    @SRC692 8 месяцев назад

    I'm only 20 minutes in so far and haven't done anything with coding since 2015. It's nice to see that I'm not completely out of the loop. Thanks for the video! 😁

  • @christian37ism
    @christian37ism 2 года назад +2

    Thank you for this video. My favorite part was generators, from this I've started building a trading app that will simulate a real one.

  • @altairdias3056
    @altairdias3056 3 года назад +71

    Day 1 on the road of Data Scientist, wish me luck guys! :)

    • @dingdongman5784
      @dingdongman5784 3 года назад +1

      @@soupnoodles He may have known the basics. He's looking to become a data scientist so its different

    • @shaurya2544
      @shaurya2544 3 года назад +1

      Good luck man!

    • @darellarocho5729
      @darellarocho5729 3 года назад +2

      How are you doing as of today? How's your journey coming along?

    • @slvzbcq2681
      @slvzbcq2681 3 года назад

      how’s it going so far

    • @shaurya2544
      @shaurya2544 3 года назад

      @@slvzbcq2681 ya

  • @soupnoodles
    @soupnoodles 3 года назад +16

    This is really good content,
    it goes way faster than the beginner tutorial and I think some constructive feedback would be the way you explain things, some people might think the speed is perfect, but for me honestly it felt like you were reading from a textbook, making no jokes unlike Mike, it was a great learning experience but some things could be changed for the benefit of entertainment while learning
    Keep it up !

    • @ayushroy3514
      @ayushroy3514 2 года назад +2

      agree'

    • @enderboy175
      @enderboy175 9 месяцев назад

      I agree, some jokes and a bit more elaboration on a coupla points woulda been nice

  • @andrewmaksimovich2432
    @andrewmaksimovich2432 2 года назад +1

    This is one of the best tutorials and well explained teaching, im grateful for this

    • @user-xq8sv3ex3c
      @user-xq8sv3ex3c Год назад

      Hello do you have any notices and if yes can you send me. I would be pleased of an answer.

  • @yashchandani9892
    @yashchandani9892 2 года назад

    I can't thank you enough for this tutorial. I was able to clear python interview from this course.

  • @deekshantwadhwa
    @deekshantwadhwa 3 года назад +6

    Thanks for the video, watched it at 3x. It was a good brush up on practical python usage. Would love to watch an even advanced version of this one 👍

    • @patloeber
      @patloeber 3 года назад +2

      Glad you liked it! Do you have any suggestions that you want to see in an even more advanced course?

    • @deekshantwadhwa
      @deekshantwadhwa 3 года назад +2

      @@patloeber yeah I be glad to suggest some - classes overloading with all the __call__, __getitem__ etc functions , logging to stream, sockets, subprocess library, argparse, smtp, and if possible a non usual library like twisted, celery etc.

    • @hemant05
      @hemant05 2 года назад

      How you watched at 3x? Did you download this video?

    • @deekshantwadhwa
      @deekshantwadhwa 2 года назад

      @@hemant05 chrome's video speed control extension

    • @hemant05
      @hemant05 2 года назад

      @@deekshantwadhwa OK, thanks. Didn't know about it.

  • @ale9507
    @ale9507 3 года назад +37

    Can't believe the timing on this one. I've just gotten slightly comfortable with using python and was looking to advance my competence with something like this. Thank you for providing this stuff for free. Why don't you bother monetizing it? Such a trivial thing. I wouldn't be bothered at all if the video was disrupted by several ads.

    • @patloeber
      @patloeber 3 года назад +3

      Glad you like the tutorial :)

    • @guptajikiladki3496
      @guptajikiladki3496 3 года назад +1

      I am learning from beginning. Where did you practice to get more comfortable with the language?

    • @vaibhavsharma5621
      @vaibhavsharma5621 3 года назад

      @@guptajikiladki3496 python (beginners) from this same channel. Its about 4 hours long

    • @rayyanamir8560
      @rayyanamir8560 2 года назад

      You can pay if you want. But we want it for free.