Тёмный

Intermediate Python Programming Course 

freeCodeCamp.org
Подписаться 10 млн
Просмотров 3,8 млн
50% 1

Опубликовано:

 

10 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 1,8 тыс.   
@dp.9130
@dp.9130 4 года назад
Finally, course which doesn't cover creating variables, and writing loops for the millionth time... THANKS!
@patloeber
@patloeber 4 года назад
Glad you like it :)
@xtra9996
@xtra9996 3 года назад
Agree!
@nooptiui
@nooptiui 3 года назад
Well it's for intermediates Sooo....they should already know that
@soupnoodles
@soupnoodles 3 года назад
I think he's being sarcastic ;-;
@nooptiui
@nooptiui 3 года назад
@@soupnoodles He's definitely not
@nariver1
@nariver1 2 года назад
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 3 месяца назад
Can you send me the link for your playlist? If it's good for beginners
@muhammadasadhaider6893
@muhammadasadhaider6893 4 года назад
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 4 года назад
HAHAHAHAHAHAHAHA!
@rafaelwendel1400
@rafaelwendel1400 3 года назад
The guy from the video messed alot with his dict
@oliasharmeen3338
@oliasharmeen3338 3 года назад
i bet your dict was really big
@_intruder
@_intruder 3 года назад
"So let's say mydict.pop()"
@julianjohnmert8658
@julianjohnmert8658 3 года назад
I don't know what's better, these lessons or this comment. XD
@elyakimlev
@elyakimlev 2 года назад
I watched the whole thing in about 2 weeks, leaving the browser tab open, and watching 1-2 sections every day. Thanks a lot!
@QuantumWaveMaster
@QuantumWaveMaster 2 месяца назад
Haha doing the same rn in 2024 :D
@raman7421
@raman7421 4 года назад
⭐️ 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
@ryskk0739
@ryskk0739 2 года назад
there are timestamps built into the video
@jahmovementempaya1084
@jahmovementempaya1084 2 года назад
The Logging explanation was really bad
@sameerboi118
@sameerboi118 Год назад
Noice😌
@yahomuse9999
@yahomuse9999 3 года назад
title: Intermediate python course first 5 seconds: Hey guys welcome to this advanced python course
@winstonyap1856
@winstonyap1856 3 года назад
this comment made me laugh out loud hahaha
@yourfriendlyneighborhood5547
@yourfriendlyneighborhood5547 3 года назад
Came here just to comment this lol 😂😂
@awadheshsingh7299
@awadheshsingh7299 3 года назад
rest of the course: pretty beginner
@madhusudannatarajan7239
@madhusudannatarajan7239 3 года назад
whatt?
@abhitruechamp
@abhitruechamp 2 года назад
*10
@TheTrace8
@TheTrace8 2 года назад
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.
@AdamHammel
@AdamHammel 2 года назад
Keep it up!
@blanker2.007
@blanker2.007 2 года назад
Same!
@rodrigo100kk
@rodrigo100kk Год назад
There will be a next one ? Cool !
@hakberdiorazow232
@hakberdiorazow232 Год назад
i think you have enough knowledge to start solving problems.
@moastlee
@moastlee 3 года назад
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 ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5lLkLi9SAlA.html
@Zekulz
@Zekulz 3 года назад
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 Год назад
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
@hungarianTEK
@hungarianTEK 3 года назад
Every time he said "my dict" i chuckled like a kid in grade school I'm 33
@ght007mcgaming4
@ght007mcgaming4 3 года назад
Who didnt. I mean del(ete) my dict ...
@simonepaudice8145
@simonepaudice8145 3 года назад
I'm Juan
@TheMaestroGuy
@TheMaestroGuy 3 года назад
♫ ♬ my dict is bigger than yours, your dict don't even function ♫ ♬
@reichheang2138
@reichheang2138 3 года назад
Same xD
@theultimatecoder3433
@theultimatecoder3433 3 года назад
@@TheMaestroGuy bruh
@justforwork4310
@justforwork4310 3 года назад
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 ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-5lLkLi9SAlA.html
@user-rf4vc7mt4d
@user-rf4vc7mt4d Год назад
@@historyrogue5056 8 buried, 0 found
@digiworld1212
@digiworld1212 Год назад
Keep doing the great work, this world needs more of it.
@adityanarayanrai7689
@adityanarayanrai7689 4 года назад
I will wait for the expert course now.
@muhammadaman9010
@muhammadaman9010 4 года назад
@@FreeJobClub good by then maybe your english will improve.
@parryhotter9333
@parryhotter9333 4 года назад
@@muhammadaman9010 Goodbye*...
@mikailu8964
@mikailu8964 4 года назад
@@parryhotter9333 "Good, by then maybe your english will improve". He was right the first time mate.
@parryhotter9333
@parryhotter9333 4 года назад
@@mikailu8964 no he wasn't, because then he would've used a comma.. mate
@Spectrum16
@Spectrum16 4 года назад
@@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.
@USSJ2Otaku3084
@USSJ2Otaku3084 3 года назад
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 года назад
dude's getting really good at coding now uses "{}" out of python
@leotodosiev8513
@leotodosiev8513 3 года назад
Oh look, a time traveler
@takharamazanpolat7610
@takharamazanpolat7610 3 года назад
Yo where you at?
@USSJ2Otaku3084
@USSJ2Otaku3084 3 года назад
@@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 года назад
@@USSJ2Otaku3084 u on mobile? how do you practice without laptop?
@aditnegi2577
@aditnegi2577 4 года назад
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 4 года назад
That's nice to hear :)
@nasus3274
@nasus3274 4 года назад
good luck! >:D
@KumarHemjeet
@KumarHemjeet 4 года назад
You in python group on telegram ?
@amraboughazala5986
@amraboughazala5986 3 года назад
@@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 года назад
@@amraboughazala5986 Thanks for the C# book link...; very deeply appreciated! ;-)
@vladimirkorshunov7734
@vladimirkorshunov7734 2 года назад
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.
@olegmakarov7877
@olegmakarov7877 Год назад
'king of copying' ? How very true
@nikitadeshmukh8207
@nikitadeshmukh8207 Год назад
​@@olegmakarov7877I think he meant 'kind of copying'
@RAGA_99
@RAGA_99 3 года назад
x = len(myDict) if x > 7: print("okay") else: print("small")
@utkarshmaurya6877
@utkarshmaurya6877 3 года назад
I see what you did there 😂
@cinemarat1834
@cinemarat1834 3 года назад
lmao
@rojamalar7550
@rojamalar7550 3 года назад
Double Meaning eh?
@futurepython6774
@futurepython6774 2 года назад
python/django/mysql新教程: python基础:ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-g6RnSRDjd5M.html python爬虫:ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-sKnUM9MTsMs.html django课程:ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-_GGkiXuJyBo.html
@matthewbrightman3398
@matthewbrightman3398 4 года назад
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.
@Mitroiul
@Mitroiul 2 года назад
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.
@lowfidelitylounge
@lowfidelitylounge Год назад
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.
@juaniriarte1193
@juaniriarte1193 Год назад
Was it useful the course?
@medsmati2063
@medsmati2063 4 года назад
I love the way explain things; simple and accurate; directly to the objective. Thank a lot.
@MilliardoPeacecraft590
@MilliardoPeacecraft590 4 года назад
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 4 года назад
What's next? An advanced Python video that's actually about obfuscated Python?
@simonepaudice8145
@simonepaudice8145 3 года назад
you're funny like a snake in the trousers
@georgekumidanquah3338
@georgekumidanquah3338 3 года назад
Is der a difference btn dem?
@heyiamdhana
@heyiamdhana 3 года назад
Hahaha
@mmmm_yesverynice
@mmmm_yesverynice 2 года назад
If this was intermediate what the hell was covered in beginner. How to spell Python
@espressoshot21
@espressoshot21 4 года назад
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 4 года назад
I'm really happy you enjoyed it!
@user-in3ye3nk8f
@user-in3ye3nk8f 3 года назад
I really appreciate this channel and fantastic coding mates who support us. Big applause from Japan 🇯🇵
@heroricspiritfreinen38
@heroricspiritfreinen38 4 года назад
I just started the beginner one Was feeling good about myself Then I see this
@youtubificationizer
@youtubificationizer 4 года назад
Practice practice, read official documentation, practice some more
@nasus3274
@nasus3274 4 года назад
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 4 года назад
same
@reggie7807
@reggie7807 4 года назад
i finished it about 3 weeks ago and jumped to this like wholy fuckt his is complicated
@dadestor
@dadestor 4 года назад
@@reggie7807 practice basics some more, get comfortable with them and then come back to this course
@SDEC-f7b
@SDEC-f7b 2 года назад
Really nice course, like the other comments mention it's very clear and covers simple but really efficient pieces of code one should know. I have 1 issue though: 1: groupby: when changing the order of the data (persons = [{'name':'Tim', 'age': 25}, {'name':'Rob', 'age': 27},{'name':'Reggie', 'age': 29},{'name':'Lea', 'age': 25}]) they do not get grouped here is the result: 25 [{'name': 'Tim', 'age': 25}] 27 [{'name': 'Rob', 'age': 27}] 29 [{'name': 'Reggie', 'age': 29}] 25 [{'name': 'Lea', 'age': 25}] For info i am using python 3.9.11 Thanks!
@tageray975
@tageray975 2 года назад
I love the way you're explaining! Decent speed, easy to understand. Perfect! Keep up!
@riverofsoup
@riverofsoup 2 года назад
16 minutes into the video and I already doubled the notes that I have in relation to lists. Thank you so much!
@siddhubhai2508
@siddhubhai2508 Месяц назад
And that's how I got a tutorial without printing the loops and strings a million times 😌
@SimpleBanana
@SimpleBanana 4 года назад
Whoa. I just finished the beginner tutorial and now this one is up.
@Sansa-Academy
@Sansa-Academy Год назад
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?
@henrihosang7888
@henrihosang7888 3 года назад
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 года назад
They didnt continue i am here after passing my PCEP just to see if i miss something
@cslover5317
@cslover5317 3 года назад
lol XD
@dpaul3447
@dpaul3447 3 года назад
Python ate remaining...😀..people
@ght007mcgaming4
@ght007mcgaming4 3 года назад
Ikr this ones just as good
@HelicopterHoneymoon
@HelicopterHoneymoon 3 года назад
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!!!
@altairdias3056
@altairdias3056 3 года назад
Day 1 on the road of Data Scientist, wish me luck guys! :)
@dingdongman5784
@dingdongman5784 3 года назад
@@soupnoodles He may have known the basics. He's looking to become a data scientist so its different
@shaurya2544
@shaurya2544 3 года назад
Good luck man!
@darellarocho5729
@darellarocho5729 3 года назад
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
@liamwood3357
@liamwood3357 2 года назад
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.
@aarohanyt7374
@aarohanyt7374 7 месяцев назад
pace in nice
@devworks8787
@devworks8787 Год назад
I watched this video after Python for beginners. I was skeptical to rewatch the List, Tuples, Dictionary and Set section. But it was worth it. learnt many unknown things.
@kirutheesg3957
@kirutheesg3957 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
@ParadymShiftVegan
@ParadymShiftVegan Год назад
This course is hella underrated. Deserves many more views!
@stusoduncan
@stusoduncan Год назад
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 👍
@anonymous_anonymity
@anonymous_anonymity 2 года назад
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.
@malharnandurkar890
@malharnandurkar890 3 года назад
Thank you FFC and all the wonderful instructors, for this channel. Exactly what you want to watch.
@endtropi
@endtropi 2 года назад
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!
@andrewmaksimovich2432
@andrewmaksimovich2432 2 года назад
Week 2 of watching this tutorial and I'm almost halfway through. Definitely learning a lot
@ale9507
@ale9507 4 года назад
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 4 года назад
Glad you like the tutorial :)
@guptajikiladki3496
@guptajikiladki3496 3 года назад
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 3 года назад
You can pay if you want. But we want it for free.
@thesuperiorman8342
@thesuperiorman8342 2 года назад
This is perfect for me. I have experience in C# and JavaScript. I need a Python tutorial that skips the basics and jumps right to the practical real-world stuff
@yuan.pingchen3056
@yuan.pingchen3056 3 года назад
OMG, 6 hours video without any subjects, my stamina can't afford this.
@slvzbcq2681
@slvzbcq2681 3 года назад
😂😂
@atharvajoshi6404
@atharvajoshi6404 8 месяцев назад
The logging explanation in your Python tutorial could be clearer. Consider providing more examples and diving deeper into configuration options for better understanding. Thanks
@kaszatus2
@kaszatus2 2 года назад
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
@uniquepun2313
@uniquepun2313 Месяц назад
After watching this videos, I understood very clearly about intermediate python course. Thank you so much sir.❤❤
@samadansari6154
@samadansari6154 4 года назад
I don't what RU-vid do but i get the recommended video, exact as i needed 🔥🔥
@ketankhandelwal8626
@ketankhandelwal8626 4 года назад
Google is watching us all :D :P
@ArjunSingh-gt2fv
@ArjunSingh-gt2fv 4 года назад
that's machine learning for you
@MadeInPython
@MadeInPython Год назад
19:09 Starting over with this, got to about halfway last time- quit after the logging section because it made zero sense but here's to finishing it finally.
@babajideodusanya8843
@babajideodusanya8843 3 года назад
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 года назад
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 года назад
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 года назад
@@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
@ParadymShiftVegan
@ParadymShiftVegan Год назад
The first half has been super enlightening, but the second half seems over my head. Just made it to multithreading.
@ElianMrl
@ElianMrl 2 года назад
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.
@muhammadhammadsarwar698
@muhammadhammadsarwar698 2 месяца назад
To all the new learners like me from python 3.7 Dictionaries are ordered. In previous versions of python dictionaries were unordered and as this video is 3 years old still a great video for python learners just add this little bit of info to your knowledge bucket.
@pestrinmarco
@pestrinmarco 3 года назад
I will wait for the expert course now!!!
@fraimy5204
@fraimy5204 10 месяцев назад
Note for myself: 42:43 - 10/23 1:23:07 - 10/24 1:52:05 - 10/25 2:20:12 - 10/26 3:14:26 - 10/27 4:26:47 - 10/28 5:30:21 - 10/29 Done - 10/30
@user-kw5hm7fq5m
@user-kw5hm7fq5m 10 месяцев назад
I will start from todday
@fraimy5204
@fraimy5204 10 месяцев назад
​@@user-kw5hm7fq5m Good luck with it! Don't forget to practice, if it's your first programming language. Cause, even for me, who learned C++, it's hard to code on python some basic things that I can on C++. It's like not knowing how to express yourself in other language. Just an advice from student to student. Write some simple apps that do stuff with interesting technologies/libraries, look at other people's projects and try to replicate them yourself or just read their codes. It's definitely mandatory to become a good programmer, in my and many other people's opinion.
@MrKareem722
@MrKareem722 3 года назад
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
@nickolaymikhailov9826
@nickolaymikhailov9826 7 месяцев назад
Hello, sir, I want to add a little bit diff in the code in the lesson about Pool (apply()): result = pool.apply(cube, [numbers[2]]) - it was OK. Thanks for your Course!
@abrahamalvarez2730
@abrahamalvarez2730 Год назад
great tutorial! but as a first-time learner of python, I think the logging section would require more intro to the topic. I did not understand too much that section.
@rutti1320
@rutti1320 Год назад
So I just finished the Beginner course and now I'm starting this one. Progress: Day 1: 0:58:44 Day 2: 1:22:50
@easydatascience2508
@easydatascience2508 Год назад
See mine too. Playlist includes most of the Python fundamental tutorials and soucrce files.
@amraboughazala5986
@amraboughazala5986 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?
@YourCRTube
@YourCRTube Год назад
Great tutorial, finally something non-trivial or focused on topics outside the language (libraries, data science, etc). Regarding multiprocessing.Value and .Array, reading the docs, it seems they come with a lock one can use. Also you should have mentioned, reading and writing is safe, but not read-and-modify (and the lock is needed then).
@philipedesouzasantos1201
@philipedesouzasantos1201 3 года назад
My english isn't advanced but I can understand perfectly everything that you're talking. I'm at 2:06:00 and loving this classes so far
@rajarajamohan3650
@rajarajamohan3650 2 года назад
Jj
@carlosmspk
@carlosmspk 3 года назад
The way he rolls his tongue when he says "lock" is so off putting! :D Good job on the tutorial, great stuff!
@krazyteetp5803
@krazyteetp5803 4 года назад
Thank you! such a great valuable course... waiting for the Expert Python Programming Course
@patloeber
@patloeber 4 года назад
Glad you like it!
@krazyteetp5803
@krazyteetp5803 4 года назад
@@patloeber Thanks!
@surajkataria2001
@surajkataria2001 3 года назад
@@patloeber Thank you very much !
@_playable_npc_1740
@_playable_npc_1740 11 месяцев назад
31:16 You used to call me on my You used to, you used to Yeah You used to call me on my cell phone Late night when you need my love Call me on my cell phone Late night when you need my love And I know when that hotline bling That can only mean one thing I know when that hotline bling That can only mean one thing Ever since I left the city, you Got a reputation for yourself now Everybody knows and I feel left out Girl, you got me down, you got me stressed out 'Cause ever since I left the city, you Started wearing less and goin' out more Glasses of champagne out on the dance floor Hangin' with some girls I've never seen before You used to call me on my cell phone Late night when you need my love Call me on my cell phone Late night when you need my love I know when that hotline bling That can only mean one thing I know when that hotline bling That can only mean one thing Ever since I left the city, you, you, you You and me, we just don't get along You make me feel like I did you wrong Going places where you don't belong Ever since I left the city, you You got exactly what you asked for Running out of pages in your passport Hanging with some girls I've never seen before You used to call me on my cell phone Late night when you need my love Call me on my cell phone Late night when you need my love And I know when that hotline bling That can only mean one thing I know when that hotline bling That can only mean one thing These days, all I do is Wonder if you're bendin' over backwards for someone else Wonder if you're rollin' up a Backwoods for someone else Doing things I taught you, gettin' nasty for someone else You don't need no one else You don't need nobody else, no Why you never alone? Why you always touchin' road? Used to always stay at home, be a good girl You was in the zone Yeah, you should just be yourself Right now, you're someone else You used to call me on my cell phone Late night when you need my love Call me on my cell phone Late night when you need my love And I know when that hotline bling That can only mean one thing I know when that hotline bling That can only mean one thing Ever since I left the city
@lafamilliaHP
@lafamilliaHP 4 года назад
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!
@Yjquaranta
@Yjquaranta 2 года назад
Thanks! Now we need a Advanced Python Programming Course!
@decryptroblox
@decryptroblox 4 года назад
Tbh this is the w3schools documentation just broken down into a video. I never realized that I was an intermediate but know I can proudly say lmao
@numbah16
@numbah16 4 года назад
@@freshprince4552 You sound like a real programmer :P
@ManishSharma-lm3wg
@ManishSharma-lm3wg 4 года назад
@@freshprince4552 bro how I'll be able to develop websites with python please guide me what is necessary?
@yandelyano
@yandelyano 4 года назад
@@ManishSharma-lm3wg Frontend: HTML, CSS and Javascript (a framework optionally for JS) Backend: you could use Django or Flask, they are frameworks using python for backend. Also, think about a database SQL or NoSQL.
@ManishSharma-lm3wg
@ManishSharma-lm3wg 4 года назад
@@yandelyano thankyou, can you suggest where to learn ?
@yandelyano
@yandelyano 4 года назад
@@ManishSharma-lm3wg Personally, I am still in the learning and don't have a grasp of all the technologies, I learned Python from FreeCodeCamp at first then read the book "Automating the Boring Stuff" which put me on a descent level to learn more complicated topics, then I moved to mobile app dev with Flutter and Dart (still in the process) from RU-vid and Udemy. I am planning to learn HTML/CSS from FreeCodeCamp video and then Vue.Js, the latter I still didn't figure out a resource to learn from. Also, I am planning to learn a python backend framework Flask with Corey Schafer who is a great instructor, one of the best actually, on RU-vid and then learn Flask with MongoDB a NoSQL data base from Udemy.
@richardwilson5769
@richardwilson5769 2 года назад
I'm halfway through and it has been very insightful so far. Really great tutorial.
@nasus3274
@nasus3274 4 года назад
putting this video away for tomorrow, gonna sleep first and then go learn some more python :D
@patloeber
@patloeber 4 года назад
Nice! Hope you enjoy the content!
@technologicalwaste7612
@technologicalwaste7612 4 года назад
no your not lol this is going to sit in your tab for 3 weeks
@nasus3274
@nasus3274 4 года назад
@@technologicalwaste7612 how do you know i literally have 3 coding tutorials that are somewhere between my tabs for the past 2 weeks
@nasus3274
@nasus3274 4 года назад
@@technologicalwaste7612 I'm too lazy to do so
@technologicalwaste7612
@technologicalwaste7612 4 года назад
@@nasus3274 we all know; we all struggle
@JominJose
@JominJose Год назад
Learnt a lot from this video, thank you so much Patrick and freeCodeCamp!
@aniketgope1502
@aniketgope1502 4 года назад
Waiting for the expert course! Thank you for such amazing content!!!
@patloeber
@patloeber 4 года назад
Glad you like the content :)
@christian37ism
@christian37ism 3 года назад
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.
@kennyking9667
@kennyking9667 4 года назад
Thanks I was always stuck in between. Thanks alot
@ansumanroutray1118
@ansumanroutray1118 Год назад
Amazing course! The tutor really went to tech topics briefly. Never had this much clarity before.
@davidweaver493
@davidweaver493 3 года назад
I can't thank you enough for this tutorial. I'm taking Google Python Automation course. I wish they would have introduced many methods like this before pushing us ahead with limited methods.
@Lapusso650
@Lapusso650 3 года назад
*had Not “would have”
@neilgyverabangan6989
@neilgyverabangan6989 2 года назад
@@Lapusso650 Thank you, grammar police! 😁😊😝
@siddhubhai2508
@siddhubhai2508 Месяц назад
Everyone note this, use earphones then speed the video at 2x, you can complete it more earlier. Without earphone at 2x you may have to face some understanding issues. ❤
@sidharthanm7761
@sidharthanm7761 4 года назад
To anyone finding the 'logging' part of the video difficult , i highly recommend the basic tutorial in the python documentation. it is really useful if u r starting logging
@Billiemagicau
@Billiemagicau 4 года назад
That is why I came to the comment section its a bit tough am lost
@fap9067
@fap9067 3 года назад
I have seen the full basic tutorial and still don't get it quite well. They actually needed to explain it better
@dr.yajadda5996
@dr.yajadda5996 2 года назад
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.
@jagprani
@jagprani 4 года назад
Thanks in advance... Was waiting for this.
@SRC692
@SRC692 10 месяцев назад
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! 😁
@RohitNayak118
@RohitNayak118 4 года назад
Legends know it was reuploaded
@zyzzbodybuilding
@zyzzbodybuilding 4 года назад
Tell me more. Is this an outdated course?
@RohitNayak118
@RohitNayak118 4 года назад
@@zyzzbodybuilding no its was originally uploaded 3hr back
@patloeber
@patloeber 4 года назад
@@zyzzbodybuilding No it's not outdated, there was just an issue with the video quality the first time
@quincylarsonmusic
@quincylarsonmusic 4 года назад
You were really fast to view the original. You must have the bell turned on ;) And yes, the version we uploaded earlier today had a minor editing issue, so we re-uploaded.
@za6604
@za6604 4 года назад
I was confused when I clicked on it and it got unlisted 5 seconds later lol.
@matiasapablaza7746
@matiasapablaza7746 Год назад
3:53:41 I have a problem is that when I execute a task with multiprocessing in the for loop it waits for it to finish before the other one starts
@ibrahimfarooq3932
@ibrahimfarooq3932 4 года назад
Can we all appreciate that there are no ads
@rustamshrestha4
@rustamshrestha4 4 года назад
Hats off 🎩 for freeCodeCamp... ❤️
@Devtheking
@Devtheking 2 года назад
20:25 42:40 46:04 58:44
@AaronDennis1111
@AaronDennis1111 3 года назад
my_dict = {"need no introduction" : 3} your_dict = {"a broken python function" : 0}
@ChimaevMikelson
@ChimaevMikelson 9 месяцев назад
Appreciate this !! real intermediate stuff!
@medsmati2063
@medsmati2063 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 ?
@danieloehler2494
@danieloehler2494 Год назад
great job, Patrick! Worthy to follow to the end and to repeat every single step.
@Maharanasunil01
@Maharanasunil01 4 года назад
Thank you for this course!!❤️
@sushmajadhav6642
@sushmajadhav6642 2 года назад
someone who even taught us about errors and exceptions. Thanks for this great video !
@polygptman
@polygptman 2 года назад
Danke!
@alpanachaphalkar3422
@alpanachaphalkar3422 Год назад
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.
@shibusharma9421
@shibusharma9421 4 года назад
Thanks for this just was searching this an hour ago and you uploaded this🤣🤣😹😹what a timing
@patloeber
@patloeber 4 года назад
I'm glad you like the content :)
@zhiweiliu7771
@zhiweiliu7771 2 года назад
00:56 List, 16:33 Tuple, 29:50 Dictionaries, 42:40 Set, 58:45 Strings, 1:22:50 Collections, 1:36:44 IterTools, 1:51:52 Lambda, 2:04:03 Exceptions, 2:20:10 Logging, 2:42:22 JSON, 2:59:42 Random Numbers
Далее
How to NOT Fail a Technical Interview
8:26
Просмотров 1,4 млн
Что думаете?
00:54
Просмотров 637 тыс.
Growing fruit art
00:33
Просмотров 975 тыс.
АХХАХАХАХАХАХАХАХ
00:16
Просмотров 184 тыс.
25 nooby Python habits you need to ditch
9:12
Просмотров 1,7 млн
Coding Was HARD Until I Learned These 5 Things...
8:34
How To Use List Comprehension In Python
6:41
Просмотров 8 тыс.
COMPUTER SCIENCE explained in 17 Minutes
16:49
Просмотров 996 тыс.
Making an atomic trampoline
58:01
Просмотров 7 млн
This MacBook was really really really really dirty #413
36:27
Python As Fast as Possible - Learn Python in ~75 Minutes
1:19:41
Every Programming Language Ever Explained in 15 Minutes
15:29
How I would learn to code (If I could start over)
9:16
Что думаете?
00:54
Просмотров 637 тыс.