Intermediate Python Programming Course

Поділитися
Вставка
  • Опубліковано 30 чер 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 роки тому +3364

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

    • @patloeber
      @patloeber 3 роки тому +147

      Glad you like it :)

    • @xtra9996
      @xtra9996 3 роки тому +5

      Agree!

    • @nooptiui
      @nooptiui 3 роки тому +39

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

    • @soupnoodles
      @soupnoodles 3 роки тому +14

      I think he's being sarcastic ;-;

    • @nooptiui
      @nooptiui 3 роки тому +75

      @@soupnoodles He's definitely not

  • @muhammadasadhaider6893
    @muhammadasadhaider6893 3 роки тому +3812

    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 роки тому +83

      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 роки тому +348

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

    • @julianjohnmert8658
      @julianjohnmert8658 3 роки тому +104

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

  • @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 Рік тому

      Learn python with me
      ua-cam.com/video/5lLkLi9SAlA/v-deo.html

  • @elyakimlev
    @elyakimlev 2 роки тому +62

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

  • @tageray975
    @tageray975 2 роки тому +6

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

  • @nariver1
    @nariver1 2 роки тому +192

    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 20 днів тому

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

  • @justforwork4310
    @justforwork4310 3 роки тому +109

    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.

  • @digiworld1212
    @digiworld1212 Рік тому +33

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

  • @lukeroneevsingh
    @lukeroneevsingh 3 роки тому +62

    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 11 місяців тому +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

  • @medsmati2063
    @medsmati2063 3 роки тому +31

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

  • @TheTrace8
    @TheTrace8 Рік тому +252

    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.

  • @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.

  • @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!

  • @malharnandurkar890
    @malharnandurkar890 3 роки тому +7

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

  • @hungarianTEK
    @hungarianTEK 3 роки тому +809

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

  • @yahomuse9999
    @yahomuse9999 2 роки тому +295

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

  • @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.

  • @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! ;-)

  • @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.

  • @riverofsoup
    @riverofsoup Рік тому +3

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

  • @anonymous_anonymity
    @anonymous_anonymity Рік тому +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.

  • @danieloehler2494
    @danieloehler2494 10 місяців тому

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

  • @andrewmaksimovich2432
    @andrewmaksimovich2432 Рік тому +4

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

  • @raman7421
    @raman7421 3 роки тому +39

    ⭐️ 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

  • @itsdinguskhan4403
    @itsdinguskhan4403 3 роки тому +231

    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

  • @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

  • @ParadymShiftVegan
    @ParadymShiftVegan Рік тому +1

    Wow, this feels like just what I needed and I only just begun. Thank you very much!

  • @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
    👍

  • @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!

  • @Errors404
    @Errors404 3 роки тому +2

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

  • @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.

  • @adityanarayanrai7689
    @adityanarayanrai7689 3 роки тому +592

    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.

  • @jagprani
    @jagprani 3 роки тому +4

    Thanks in advance... Was waiting for this.

  • @ansumanroutray1118
    @ansumanroutray1118 10 місяців тому

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

  • @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

  • @sunilmaharana6864
    @sunilmaharana6864 3 роки тому +5

    Thank you for this course!!❤️

  • @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?

  • @kabeertariq5940
    @kabeertariq5940 2 роки тому

    Amazing course! Thank you so much for uploading this!

  • @wesg01
    @wesg01 2 роки тому

    Awesome tutorial! Really really appreciate your work.

  • @user-in3ye3nk8f
    @user-in3ye3nk8f 3 роки тому +7

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

  • @SimpleBanana
    @SimpleBanana 3 роки тому +7

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

  • @Diego-Desde-Argentina
    @Diego-Desde-Argentina 6 місяців тому

    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!

  • @neilkumar2075
    @neilkumar2075 Рік тому

    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

  • @kennyking9667
    @kennyking9667 3 роки тому +5

    Thanks I was always stuck in between. Thanks alot

  • @RAGA_99
    @RAGA_99 3 роки тому +29

    x = len(myDict)
    if x > 7:
    print("okay")
    else:
    print("small")

  • @mrfreddie04p
    @mrfreddie04p Рік тому

    Very good! Clear explanations and straight to the point.

  • @anzo.p
    @anzo.p 3 роки тому

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

  • @MrKareem722
    @MrKareem722 2 роки тому +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

  • @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!

  • @hunterallen4521
    @hunterallen4521 2 роки тому

    This is so incredibly helpful thank you so much!

  • @rolinejohnaguilar5272
    @rolinejohnaguilar5272 2 роки тому

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

  • @merrymouse2008
    @merrymouse2008 3 роки тому +3

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

  • @aniketgope1502
    @aniketgope1502 3 роки тому +4

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

    • @patloeber
      @patloeber 3 роки тому +1

      Glad you like the content :)

  • @alexandarjelenic2880
    @alexandarjelenic2880 3 роки тому +2

    Patrick, thank you so much for this excellent video. Should pool be used with a context manager as you did with multiprocessing? Thank you again

  • @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?

  • @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

  • @richardwilson5769
    @richardwilson5769 Рік тому +1

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

  • @jamesmbouende-poutcheu1369
    @jamesmbouende-poutcheu1369 3 роки тому +2

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

  • @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.

  • @pestrinmarco
    @pestrinmarco 3 роки тому +15

    I will wait for the expert course now!!!

  • @ramganapathy3298
    @ramganapathy3298 3 роки тому +1

    Extremely useful Python course. Thanks for sharing!!

  • @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!

  • @USSJ2Otaku3084
    @USSJ2Otaku3084 3 роки тому +68

    Okay, I'm posting this for myself. It's a bit late and I need to get some sleep. So I'll set a bit of a record each time.
    Recently stopped
    1) March 17, 2021 - 1:42:43
    2) March 18, 2021 - 1:48:53
    3) March 20, 2021 - 2:04:03
    4) March 21, 2021 - 2:10:41
    5) March 22, 2021 - 2:20:11
    6) March 25, 2021 - 2:30:10
    7) March 26, 2021 - 2:34:35
    8) March 28, 2021 - 2:42:22
    9) March 29, 2021 - 2:48:03
    10) March 31, 2021 - 2:55:01
    11) April 01, 2021 - 2:59:58
    12) April 02, 2021 - 3:04:31
    13) April 03, 2021 - 3:08:09
    14) April 05, 2021 - 3:12:58
    15) April 06, 2021 - 3:19:09
    16) April 08, 2021 - 3:23:08
    17) April 10, 2021 - 3:26:41
    18) April 12, 2021 - 3:29:18
    19) May 02, 2021 - 3:30:11
    20) May 06, 2021 - 3:35:44
    21) May 12, 2021 - 3:36:54
    22) May 15, 2021 - 3:41:53
    23) May 17, 2021 - 3:50:48
    24) May 18, 2021 - 3:54:01
    25) May 19, 2021 - 4:15:25
    26) May 20, 2021 - 4:31:09
    27) May 21, 2021 - 4:41:00
    28) May 22, 2021 - 4:53:31
    29) May 23, 2021 - 5:10:48
    30) May 24, 2021 - 5:18:09
    31) May 25, 2021 - 5:55:40

    • @YuraK25
      @YuraK25 3 роки тому +15

      dude's getting really good at coding now uses "{}" out of python

    • @leotodosiev8513
      @leotodosiev8513 3 роки тому +4

      Oh look, a time traveler

    • @takharamazanpolat7610
      @takharamazanpolat7610 3 роки тому +2

      Yo where you at?

    • @USSJ2Otaku3084
      @USSJ2Otaku3084 3 роки тому +2

      @@takharamazanpolat7610 I'm in the topic of JSON. I'm almost done with that topic 🤔😅. He was discussing about converting Python objects to JSON (Javascript Object Notation) data. Man, I'm going to need to get a laptop to practice this kind of stuff.

    • @takharamazanpolat7610
      @takharamazanpolat7610 3 роки тому +4

      @@USSJ2Otaku3084 u on mobile?
      how do you practice without laptop?

  • @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 Рік тому +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

  • @maulikpatel3975
    @maulikpatel3975 2 роки тому +1

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

  • @dr.yajadda5996
    @dr.yajadda5996 2 роки тому +1

    This is really a great course. In Threading lesson at time 4:28:10 if you align q.join() in line 26 with q. put(i) in line 24 then you don't need to use Lock. I didn't use Lock and my threads never mixed up.

  • @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

  • @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.

  • @ctpalli
    @ctpalli 3 роки тому

    Thank you for this tutorial, man!

  • @rhythmbhandari8549
    @rhythmbhandari8549 3 роки тому +1

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

  • @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.

  • @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.

  • @jsonkweamie8862
    @jsonkweamie8862 3 роки тому

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

  • @vortax521
    @vortax521 2 роки тому

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

  • @krazyteetp5803
    @krazyteetp5803 3 роки тому +9

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

  • @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..

  • @JominJose
    @JominJose 11 місяців тому +1

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

  • @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

  • @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

  • @eligorniak9699
    @eligorniak9699 3 роки тому +3

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

  • @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!

  • @WimHeebels
    @WimHeebels 2 роки тому

    It was a very useful course for me, I gained many new insights. Thanks a lot!

  • @mmmm_yesverynice
    @mmmm_yesverynice 2 роки тому +11

    If this was intermediate what the hell was covered in beginner. How to spell Python

  • @leonipaso1475
    @leonipaso1475 2 роки тому +3

    I’m just a beginner (mostly doing my own lectures and coding) but this Intermediate tutorial feels really where I am at.
    It’s an amazing content. I really appreciate you help guys.
    P.S: I use sublime text but I was just wondering what IDE is he using here?

  • @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.

  • @samadansari6154
    @samadansari6154 3 роки тому +7

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

  • @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

  • @marioblizzard6057
    @marioblizzard6057 3 роки тому +1

    Thank you VERY much. It is a very clear and consistent presentation. It clears and answers many questions. Mario. New York.

  • @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!

  • @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.

  • @heroricspiritfreinen38
    @heroricspiritfreinen38 3 роки тому +92

    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

  • @andrewmaksimovich2432
    @andrewmaksimovich2432 Рік тому +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.

  • @jkotsche7035
    @jkotsche7035 2 місяці тому

    Very concise and precise!!! thank you👍👍👍

  • @henrihosang7888
    @henrihosang7888 3 роки тому +141

    It is funny that the beginner Python tutorial has 19Million views and this one not even 300k. Where did all the people go?^^

    • @jayhiryu2139
      @jayhiryu2139 3 роки тому +9

      They didnt continue i am here after passing my PCEP just to see if i miss something

    • @cslover5317
      @cslover5317 3 роки тому +1

      lol XD

    • @dpaul3447
      @dpaul3447 3 роки тому +22

      Python ate remaining...😀..people

    • @ght007mcgaming4
      @ght007mcgaming4 3 роки тому +4

      Ikr this ones just as good

    • @HelicopterHoneymoon
      @HelicopterHoneymoon 3 роки тому +6

      I'm a beginner but I went through a few beginner courses and didn't really feel like it was juicy enough. Now this here is great!!!

  • @suyash4891
    @suyash4891 3 роки тому +3

    Finally the quality is fixed 👌
    Thx FCC

  • @SRC692
    @SRC692 7 місяців тому

    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! 😁

  • @sushmajadhav6642
    @sushmajadhav6642 2 роки тому

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

  • @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 :)

  • @devadowee5155
    @devadowee5155 3 роки тому +3

    very grateful for the teaching though having subtitles would help a lot when going in 1.25/1.5x.