Python Tutorial: if __name__ == '__main__'

  Рет қаралды 2,042,040

Corey Schafer

Corey Schafer

9 жыл бұрын

In this video, we will take a look at a common conditional statement in Python:
if _name_ == '__main__':
This conditional is used to check whether a python module is being run directly or being imported.
✅ Support My Channel Through Patreon:
/ coreyms
✅ Become a Channel Member:
/ @coreyms
✅ One-Time Contribution Through PayPal:
goo.gl/649HFY
✅ Cryptocurrency Donations:
Bitcoin Wallet - 3MPH8oY2EAgbLVy7RBMinwcBntggi7qeG3
Ethereum Wallet - 0x151649418616068fB46C3598083817101d3bCD33
Litecoin Wallet - MPvEBY5fxGkmPQgocfJbxP6EmTo5UUXMot
✅ Corey's Public Amazon Wishlist
a.co/inIyro1
✅ Equipment I Use and Books I Recommend:
www.amazon.com/shop/coreyschafer
▶️ You Can Find Me On:
My Website - coreyms.com/
My Second Channel - / coreymschafer
Facebook - / coreymschafer
Twitter - / coreymschafer
Instagram - / coreymschafer
#Python

Пікірлер: 1 600
@samiam.402
@samiam.402 2 жыл бұрын
Dude, it's incredible how simple this concept is when it's explained well. So many other resources had my head spinning about it, but just one 8 minute KZfaq video later, and I'm like "oh yeah well obviously."
@shaheenelt
@shaheenelt 2 жыл бұрын
p Ppp
@michaelhagans965
@michaelhagans965 2 жыл бұрын
shoot yeah Sam I am.
@tanchwa3740
@tanchwa3740 2 жыл бұрын
same boat here I was like what the hell is a __main__ and why should I even care lol. But this makes so much sense. I especially understand someone else's stack exchange comment now about how this is really important for global variables.
@buddhahead8734
@buddhahead8734 2 жыл бұрын
I'm glad this is where I looked first. It looked intimidating at first, but he made it make sense. Seems like a really intuitive feature.
@ronakpatel9023
@ronakpatel9023 Жыл бұрын
You spoke my mind man….
@blmcmcn
@blmcmcn 4 жыл бұрын
Short answer: this set up gives you the option to run (or not run) a chunk of code when imported from another python file
@Dorumin
@Dorumin 4 жыл бұрын
I got that from the first 20 seconds, it's quite a simple concept for me and I thought up a lot of usecases. Pretty interesting, I don't think I'll watch the rest of the video
@pulpil10
@pulpil10 3 жыл бұрын
@@Dorumin you are so smart
@Dorumin
@Dorumin 3 жыл бұрын
@@pulpil10 Yeah, looking back on this comment it did seem pretty pompous lol, but it really was pretty familiar enough for me to grok like that An example being a chess program that either runs on the command line if you run it directly or offers an API if imported
@ChrisT-ib1zh
@ChrisT-ib1zh 3 жыл бұрын
@@pulpil10 and you are right
@isMeStranger
@isMeStranger 3 жыл бұрын
@@Dorumin he explained nothing in the first 20 secs. Does patting yourself on the back make you feel any better?
@kogcyc
@kogcyc 4 жыл бұрын
Hi, Corey. If you ever wonder if you're making a difference in the world, then let me assure you that you are. Your videos make learning and using Python possible for those who watch them. Beautiful work. Thank you very much.
@coreyms
@coreyms 4 жыл бұрын
Thanks!
@gonzalotoloza6700
@gonzalotoloza6700 7 ай бұрын
@@coreymsyeah you helped us so much, thank u
@zsszeli
@zsszeli Жыл бұрын
Man, this is the first video where I actually get what this means. You are the GOAT, my friend.
@tyroneslothdrop9155
@tyroneslothdrop9155 9 жыл бұрын
Subscribed: That was by far the best explanation I've found on KZfaq regarding this topic. I hope you continue to make videos.
@AhmedBalfaqih
@AhmedBalfaqih 8 жыл бұрын
I agree with you. I subscribed based on this video only.
@Kevin-iu4kj
@Kevin-iu4kj 8 жыл бұрын
no. this shit makes no sense
@codestorywithMIK
@codestorywithMIK 7 жыл бұрын
Tyrone Slothdrop I totally agree
@purpleice2343
@purpleice2343 7 жыл бұрын
Kevin, of course it doesn't make sense when you're braindead xD
@adityarprasanna
@adityarprasanna 6 жыл бұрын
Came to the comment section to say the same thing and I see I was beat to it.
@brandonhunter3036
@brandonhunter3036 4 жыл бұрын
The absolute clear and concise explanation I've seen on this in 5 years off and on of playing and working with Python. Well done!
@EV4UTube
@EV4UTube Жыл бұрын
I have found a way of conceptualizing this line of code in a way that (for me) may be easier to understand ... Think of any single individual who is part of a family; we will call this person Xavier. Let's talk about the relative terms we use when relating Xavier to the rest of his family. His parents consider Xavier to be his SON. His sister considers Xavier to be her BROTHER. His second-tier relatives consider Xavier to be their COUSIN. His grandparents consider him to be their GRANDSON. Lastly, Xavier considers Xavier to be HIMSELF. Xavier is still the same person in each of these relative relationships, but the relative term we use for him is different depending on who we are relating to. So, when we write, "If __name__ == __main__" then we are effectively asking is: "If == HIMSELF" If that code evaluates to TRUE, then we know that the program is running on its own - it is referring to itself. == "HIMSELF" If, however, that code evaluates to FALSE, then we know that the program is running as a component of another program. That is, when you run the code "if __name__ == __main__" and it evaluates as FALSE, then it would be **metaphorically** equivalent to the return values being something like the following: == "SON" == "BROTHER" == "COUSIN" == "GRANDSON" In other words, Xavier is not operating as HIMSELF, he is operating in relation to some other entity (a subcomponent of another program).
@FloppyCuber1993
@FloppyCuber1993 Жыл бұрын
this made me confused as hell at the beginning ;) But is a good explanation too.
@lvplvp
@lvplvp Жыл бұрын
Wow thank you for the great explanation!!
@Mr.Jiggle
@Mr.Jiggle 9 ай бұрын
it is more like if relative pronoun is not son, brother, etc.. then this is not the main "xavier" it is someone else IMPORTED to this file "family", correct me if im wrong
@EV4UTube
@EV4UTube 9 ай бұрын
@@Mr.Jiggle I dont see a problem with your analogy. However, I also dont see a difference. I feel like you identified a difference with no real distinction. If Xavier is your nephew, he's not your child (you've imported him to your family). But if your approach helps you capture the concept, then run with it.
@Mr.Jiggle
@Mr.Jiggle 9 ай бұрын
@@EV4UTube thanks, i was just making sure that i caught it right, i almost understand rn, thank you again
@ashishdeora8522
@ashishdeora8522 3 жыл бұрын
It's hard to believe that such a complicated concept can be explained like this. Cheers Cory, the great!
@notanenglishperson9865
@notanenglishperson9865 2 жыл бұрын
It's not that complicated, it's just terribly explained by others
@humanOSx
@humanOSx 5 жыл бұрын
man you are awesome, I started with the first video of Flask series and now I come here for understand the ifmain conditional. thanks for your youtube channel, it will be for very much help, I am a new subscriber, like in all your videos. Greetings from México.
@vavilon7109
@vavilon7109 3 жыл бұрын
I thought that geneticists are terrible at naming things but coders have their share of confusing nomenclature. Despite that, I got it because of this video! Thanks Corey!
@rukhan8900
@rukhan8900 3 жыл бұрын
I hope you know that even 6 years after posting your content is still helping beginners like me understand python better than anything else on the internet can! Thank you for your work, it's great! :)
@kellzbaker
@kellzbaker 24 күн бұрын
9 years baby
@AliColak
@AliColak Жыл бұрын
THIS MAKES SO MUCH SENSE. I spent an hour and a half today rewatching the video i learned it from and trying to get a grasp on it. Makes a lotta sense when you explain and show it the way you do. It's sort of like a validation prompt to see which file is being run to avoid duplicates etc.
@nigelmtb
@nigelmtb 5 жыл бұрын
What everyone else said: best explanation available. Thank you very much.
@supermanish
@supermanish 6 жыл бұрын
Haven't encountered an explanation as good as this. Thank you! The world needs teachers like you.
@abu5197
@abu5197 3 жыл бұрын
I've literally been searching for this for the past two years. So simple yet I haven't seen anyone explain it better!
@Skypriv
@Skypriv 4 жыл бұрын
You rock. I'm so lucky, I looked down out of confusion while watching a tutorial because this was used (but I had no clue what it was).. my eyes just happened to see this video suggested, noice
@garydunken7934
@garydunken7934 7 жыл бұрын
I considered "if __name__ == '__main__'' as some magical conditional check that triggered the main function for me, until I watched this video today. It's clear now. Your explanation was so clear and simple it made so much sense. Thanks.
@codestorywithMIK
@codestorywithMIK 7 жыл бұрын
You are the only one whose lecture cleared my concept of __main__ in python. i subscribed to your channel as soon as I understood the concept. thanks. keep uploading.
@potterdkk4371
@potterdkk4371 4 жыл бұрын
I stuck for DAYS on this, THANK YOU SO MUCH for explaining the topic really clearly.
@anindam9179
@anindam9179 4 жыл бұрын
okay, this person is so nice that he repeated the same thing without sounding repeatative at all. anyway, coming to the point, I think for average,slow,diverted students the video needs to be seen twice or whatever, there's got to be some kind of repeatation; but for focused students he's a great teacher
@alfredgarrett9589
@alfredgarrett9589 6 жыл бұрын
I commend you on your teaching. I struggled with this concept for a long time, now it seems so simple.
@JoeEvansSound
@JoeEvansSound 7 жыл бұрын
Thank you very much - I have read and read on this subject but was getting totally confused. This video explains things so much better. Thank you very much. Your video is very explanatory and well done. :¬)
@coreyms
@coreyms 7 жыл бұрын
Thanks. Glad to hear you found it useful!
@nikhilchigali
@nikhilchigali 6 жыл бұрын
I agree!!! this video clarified my doubts!!
@jenniferf.8387
@jenniferf.8387 4 жыл бұрын
New to Python, I'm a C# developer, this video was exactly what I needed... just had to find the right one so it would click. THANK YOU!
@nelsongg347
@nelsongg347 5 жыл бұрын
THE best explanation on the subject. Thanks Corey!!
@jayw.1139
@jayw.1139 5 жыл бұрын
Sir, you will live 10,000 years!! Thank you for this informative video. Straight and to the point to which I could easily comprehend.
@JRavenell
@JRavenell 6 жыл бұрын
This is the best explanation with EXAMPLES I've ever seen on this. This will help me tremendously. I salute you!
@pptx704
@pptx704 4 жыл бұрын
I have read a lot of articles on this specific topic, but none of them could make me understand this "if __name__==__main__" thing. Thanks for making it simple and understandable. By far the best one I've come through!
@BythanProductions
@BythanProductions 4 жыл бұрын
I spent all morning finishing your OOP walkthrough videos and just ended with this. You, sir, are amazing.
@dwainetrain
@dwainetrain 6 жыл бұрын
Your clarity is a godsend! Thank you for the instruction Schafer Sensei!
@lardosian
@lardosian 6 жыл бұрын
Such a joy listening to your tutorials. The instructor in my paid course just keeps stuttering and mumbling to the point where I lose the will to live. You are a life saver, easily in the top 3 instructors online.
@coreyms
@coreyms 6 жыл бұрын
Thanks! I stutter and mumble a lot as well, but I edit all of that out because I don't want to waste the viewers time. Glad you enjoy the videos!
@4abdoulaye
@4abdoulaye 4 жыл бұрын
Clearest one I ever found and reference my friends.
@tahep3906
@tahep3906 5 жыл бұрын
this seemingly complex topic can't be explained better that this, thanks a lot for clarifying it...
@sephkm7482
@sephkm7482 5 жыл бұрын
thos was the best and really honestly ever best explanation for this term I've been always trying to understand! Thanks so so much!!
@giorgionapoli85
@giorgionapoli85 6 жыл бұрын
"So, I really hope this video was useful..." Yes man... yes. Big YES. Damn it, thank you! And it's not the first time you englightened me.
@simonfelix9138
@simonfelix9138 4 жыл бұрын
Crystal clear and very helpful series of videos. You seem to acutely anticipate areas of confusion for an audience who is looking at the topic with a fresh pair of eyes and then proceed to clarify these doubts with simple but complete explanations and back it up with relevant examples. There are loads of online paid courses that fall far short from the level of your videos. Kudos. Wish someone could teach the hosts of instructors and trainers out there to emulate your capabilities, many of these courses seem to frustrate new students more than help them.
@piyushsharma7585
@piyushsharma7585 2 жыл бұрын
So simple, so elegant. Loved the way he explained this. I’m not gonna forget this thing in my entire life. Thank you
@Baba-so6fh
@Baba-so6fh 2 жыл бұрын
Finally it makes sense! Great video. So I understand now that the variable __name__ is different depending on whether the Python file is being run directly as a script or if it is imported somewhere else. If someone imports it, you can choose for the contents not to be run.
@LuisMan8
@LuisMan8 8 жыл бұрын
You say: "Thank for wacht it"... I say : Thank for teach me !!!!
@sourabhsaini967
@sourabhsaini967 6 жыл бұрын
You r right
@nemplayer1776
@nemplayer1776 5 жыл бұрын
NemCorrect: You say: "Thanks for watching" I say: "Thanks for teaching me!" Always on service.
@ycombinator765
@ycombinator765 4 жыл бұрын
@@nemplayer1776 you did not get the joke!
@hanle2566
@hanle2566 4 жыл бұрын
@@ycombinator765 what is the joke? mind to elaborate?
@copperymarrow1583
@copperymarrow1583 4 жыл бұрын
r/whooosh
@adityapradhan8474
@adityapradhan8474 4 ай бұрын
I was terrified by this concept. But it was so simple. Thank you so much. People don't know how to teach, but you surely do...
@CuongNguyen-gu9fl
@CuongNguyen-gu9fl 3 ай бұрын
If you want understand Python more clearly, check the video "What does it take to be an expert in Python" by PyData. It will give you an overview of how Python, specifically the "underscore" methods, works.
@abdelhaqfaouzi
@abdelhaqfaouzi 4 жыл бұрын
I'm learning Python on my own and haven't reached the underscored 'thingies', but just watching this video, I understood the whole concept!! Thumbs up!! thx
@raj1307
@raj1307 5 жыл бұрын
I found your explanation best........Thank you so much..!!
@vinhtranphuc715
@vinhtranphuc715 4 жыл бұрын
Great! You're one of the greatest Python tutor on KZfaq
@crimepunishment5372
@crimepunishment5372 Жыл бұрын
Corey, Man, you are an asset to humanity indeed, keep the good work.
@chilukanand
@chilukanand Жыл бұрын
Feels so good when you get to decipher __name__ = '__main__'. For years it was a huge mystery and blindly went with the flow. Thanks for the clarity distinguished mate!
@MrTigerstyle80
@MrTigerstyle80 4 жыл бұрын
THE MOST cogent explanation of python import machinery available IMHO.
@gyan2664
@gyan2664 8 жыл бұрын
perfectly explained ..thx a lot confusion removed ...
@haiderhani1998
@haiderhani1998 4 жыл бұрын
i've been roaming around for two days now. this is by far the best video i found. just subscribed!
@user-hi8vb9uk6n
@user-hi8vb9uk6n 2 ай бұрын
8 years later and it's still useful! Thank you so much for the amazing video :)!
@zaqwsx28
@zaqwsx28 4 жыл бұрын
KZfaq recommendations can apparently read my mind. Thanks for covering this topic!
@alexxxxxxxxxxxxxxxxxxxxx
@alexxxxxxxxxxxxxxxxxxxxx 5 жыл бұрын
Thank you! The presentation of information is very clear!
@Nugeorge
@Nugeorge 4 жыл бұрын
What an excellent explanation -- I finally had that 'eureka!' moment with this topic after my brain failed to comprehend several other tutorials about this.
@fafza1
@fafza1 4 жыл бұрын
Finally. I had seen that scary double underscore several times and couldn't figure out what it was all about. Thank you for the explanation.
@pyTechLife
@pyTechLife 4 жыл бұрын
Finally got this. Thank you a lot!
@ytb93holmes
@ytb93holmes 4 жыл бұрын
Clear conception. And other puzzle is that I'm interested in learning how to execute and preview the result on sublime text after finishing python?
@dusanbiga4948
@dusanbiga4948 4 жыл бұрын
Probably figured out by now but sublime is a texteditor and not a IDLE.
@NotxarbProd
@NotxarbProd 4 жыл бұрын
CTRL-B
@MrinmoyHaloi
@MrinmoyHaloi 3 жыл бұрын
Change build system to python3 and then ctrl+b
@nuutti729
@nuutti729 3 жыл бұрын
Got recommended two of your videos, this and the working with json data in Python. Both very helpful videos with clear explanations. You earned yourself a new subscriber!
@sixadamra
@sixadamra 3 жыл бұрын
5 years later this video is still great. Thanks for this explanation, it clears up the concept perfectly.
@ducpham9991
@ducpham9991 4 жыл бұрын
After three years used python, finally, i know why they use it :)) thanks so much
@tammytreit3877
@tammytreit3877 5 жыл бұрын
Thanks, clear and super helpful to this beginner!
@ericsteph
@ericsteph 3 жыл бұрын
Hats off! you exaplain it simply and clearly. I have always thought this main story was complicated but thanks to you, now I fully grasp it.
@brianontheair
@brianontheair 3 ай бұрын
Holy crap I’ve been looking for a good explanation of this for forever. After not understanding when I first started learning I just skipped past it and always ignored it every time I saw it. But today I decided I was going to sit down and understand it and you made it clear. Thank you.
@bhaskartrivedi3114
@bhaskartrivedi3114 2 жыл бұрын
2021: These are future-proof tutorials!
@Sheriff.Movement
@Sheriff.Movement 4 жыл бұрын
Can't get better explanation than this🙏🏼
@heron22wading
@heron22wading 3 жыл бұрын
you can have waaaaaaaaay better explanations than this crap. He just wrote shit and didn’t bother to explain new stuff
@skull4110
@skull4110 3 жыл бұрын
@@heron22wading fuck off. Writing stuff is exactly what I needed.
@jparth1593
@jparth1593 3 жыл бұрын
Agree
@AmitParam
@AmitParam 3 жыл бұрын
@@dr.rijjaayaz8160 ___
@AmitParam
@AmitParam 3 жыл бұрын
@@dr.rijjaayaz8160 sgs
@prathameshpradipdatar2003
@prathameshpradipdatar2003 5 жыл бұрын
Really liked your way of explanation!! Voice, pace, and clarity of information were perfect.
@thirumaleshece715
@thirumaleshece715 4 жыл бұрын
Hi Corey Thanks for making these vedios .. You are by far the best Tutor i have ever seen.. Your Flow of teaching basics is brilliant.. not many cover those.. please continue your good work.. Being simple , clear, to the point is the best way in your teaching .. ..
@tnmyk_
@tnmyk_ Жыл бұрын
This is EPIC! Thanks a lot for making this video!
@robodair
@robodair 7 жыл бұрын
Concise and to the point. Nice :)
@leehouchin2871
@leehouchin2871 5 жыл бұрын
Wonderful explanation. As everyone has said, this is one of the best explanations of this topic. One thing to add though. I know many here are well versed in Python will know this, but for those new to Python here is an example of why you would employ the 'if __name__ == "__main__" in a module. When you build a module, you will want to test it and make sure it works to spec. The beauty of it is that you never have to remove it and it gives you an easy way to test out your module before importing it into other Python files.
@yogiblak7819
@yogiblak7819 2 жыл бұрын
You are quite literally the BEST explainer in the world! You could take any concept and get the most mentally incapable person to understand it. Great job!
@zhencao6115
@zhencao6115 7 жыл бұрын
Nice man. Thank you for share your knowledge.
@susarlaaditya5629
@susarlaaditya5629 5 жыл бұрын
Subscribed: Man you explained very well!
@cass12345
@cass12345 Жыл бұрын
I came here because I was confused by a Udemy course I'm doing - your explanation was fantastic and simple. Thank you.
@thehonestabe
@thehonestabe 4 жыл бұрын
The way you explain it is so clear and very good. I guess because you really wanna teach and your main goal is to teach people and be helpful. First video watched from your channel and I subscribed. Thank you very much!
@1377sv
@1377sv 5 жыл бұрын
brilliant yet concise explanation. ThankYou
@afrankiuk78
@afrankiuk78 4 жыл бұрын
Great explanation! I completed a graduate program in data science and none of the professors explained this as clearly.
@joshuapeterson2084
@joshuapeterson2084 3 жыл бұрын
EVERY SINGLE TIME! I have a python course I'm working through, and its very good, but sometimes it fails to explain things(like name equals main) in a way that is easy to understand. Every time I run into that, I look to see if you have a video on it, and every single time not only do you have a video, but it explains it perfectly in an easily comprehensible way. Thank you for these. I hope you are making some money off them because they are wonderful.
@aatt3209
@aatt3209 4 жыл бұрын
OMG, this is the first time I am getting the concept using __main__, thank you so much for being a great teach!
@Nonplused
@Nonplused 4 жыл бұрын
I'll be watching more of these videos for sure. My 14 year old son is learning to program in Python, but of course in my day Visual Basic was all the thing, so I have a hard time helping him even though I am very good with VB. The syntax is quite a bit different and the way people use Python is also quite a bit different. Even just the fact that logical statements like if, while, for etc. don't need to be terminated but rely on formatting is new to me. No more "end if". Visual Basic is more like Visual Pascal only without dynamic variables. Shows how old I am. And when did we go back to running stuff from the command prompt? It took me an hour to figure out how to get my computer to launch python that way even with the help of a video. Mind you I wasn't very familiar with setting system variables. I also really miss the "Step" debugger function in VB. I found something similar in Python but since half the time you are in imported code I have no idea what it is pointing at. My son would joke "oh look we are at line 1048 of my 50 lines of code". A video on how that works would be great.
@gherbihicham8506
@gherbihicham8506 5 жыл бұрын
Coming up from a C++ and Java world I use the "if __name__ == '__main__':" functionality almost religiously, even though most of the time I dont need it.
@qwerasdfhjkio
@qwerasdfhjkio 4 жыл бұрын
___name___
@Waterlmelon
@Waterlmelon 2 жыл бұрын
This is the best explanation for if __name__ == '__main__' that bothered me every time I saw it in a python code and tried to ignore it and escape from it. Thousand thanks!!
@danZ-bg3mz
@danZ-bg3mz 4 жыл бұрын
thank you! i have read so many other explanations before coming here and the way you explained it was simple yet clear.
@Sabre00
@Sabre00 5 жыл бұрын
When I found this out at first I couldn't see the usefulness of it but I realized that I could test my modules separately and not have it called within my main program. Great explanation as always.
@yohandarshana
@yohandarshana 5 жыл бұрын
Very helpfull video , thanks for upload this video
@RuinousGrace
@RuinousGrace 3 жыл бұрын
It's funny how almost no tutorials I've seen cover this statement, given how incredibly common it is. Thank you very much!
@abdulraaziq7055
@abdulraaziq7055 3 жыл бұрын
This guy explains the best...answers all the questions that appears in the mind while watching...keep going
@rubialugattimoreira1978
@rubialugattimoreira1978 Жыл бұрын
Best explanation! 👏👏
@easydatascience2508
@easydatascience2508 Жыл бұрын
See mine too. The channel has Python crash tutorials, and R beginning course tutorials. Step by step, sequentially. And you can download all the source files (can be found in the description of the video).
@luijo633
@luijo633 4 жыл бұрын
You just cured my anxiety
@vamsikrishna-cf7tq
@vamsikrishna-cf7tq 5 жыл бұрын
This is the best explanation to this topic I found till today..thank you very much.
@norolover4015
@norolover4015 Жыл бұрын
Finally, an explanation that isn't cryptic and unintelligible for a poor beginner like me. Thanks a bunch!
@roshanyadav2078
@roshanyadav2078 5 жыл бұрын
Thanks Corey this was wonderful!! Just a question when I can use this? Any example from any of your practical programs?
@nikiffleser2599
@nikiffleser2599 5 жыл бұрын
I mean you just use it in every programm (module) for the sake of importing it later on.
@rigid9822
@rigid9822 5 жыл бұрын
thanks mate great explanation
@user-cx7dm5qq6g
@user-cx7dm5qq6g 2 жыл бұрын
Thanks, this is definitely by far the simplest and clearest explanation I've read.
@daliteng8531
@daliteng8531 5 жыл бұрын
This video is quite useful and explains the technology clearly, simple and clear. Highly recommend if you are experiencing the same confusion.
@dawei9450
@dawei9450 7 жыл бұрын
Sorry to raise this rookie's question. In the video you use a method in print as : print 'first is: {}'. format(__name__) After having played with it a bit I found it to be the same with print 'first is: %s' %(__name__) I wonder if there is any difference between them and could you briefly introduce a bit about the advantage (or some tricks) of using "{} and .format"?
@u.pawanvinayak
@u.pawanvinayak 7 жыл бұрын
thanks Corey for giving crystal clear explanation for the special variable __name__ moreover while watching this video, i had also doubt regarding print 'first is: {}'. format(__name__) and then while scrolling through the comments i found your reply thanks a lot for this as well..... just a small question here: as you said in the video that __name__ is a special python variable my question is are python special variables are similar to environment variables as those in languages like shell?
@farmrocket_
@farmrocket_ 7 жыл бұрын
The difference is between Python 2.x and 3.x . %s is the string formatter for 2.7 and {} the formatter for 3.x
@dawei9450
@dawei9450 7 жыл бұрын
Thanks a lot. Now I see where does this come from. And just out of curiosity, does Py 3.x completely cancelled the %s, %d, %f expression, or it just replaced the %s with {}?
@farmrocket_
@farmrocket_ 7 жыл бұрын
afaik there are no % formatters in py 3.x
@dawei9450
@dawei9450 7 жыл бұрын
Thanks for the info ~!
@lilJ5754
@lilJ5754 4 жыл бұрын
Very well explained. When would you actually need to use this though? I am having trouble coming up with a good example..
@Denis-xl8jx
@Denis-xl8jx 4 жыл бұрын
The only thing I know if is testing. Define a function and test if it works properly.
@kamaur01
@kamaur01 4 жыл бұрын
I just started learning python. This was the first video that explained it to me. Thank you
@lorenzero8002
@lorenzero8002 4 жыл бұрын
Thank you so much Corey Schafer. This helped me a lot.
@andrewluo6088
@andrewluo6088 4 жыл бұрын
I am from china my teacher never explain these things to us thank god i have find this video
@Hephasto
@Hephasto 4 жыл бұрын
Andrew Luo do you ask him to explain ?
@realnice3672
@realnice3672 3 жыл бұрын
@@Hephasto maybe he is introvert.
@mint-o5497
@mint-o5497 5 жыл бұрын
Print (“thank u so much these tutorials have helped me so much :)”)
@yuvrajmetrani227
@yuvrajmetrani227 3 жыл бұрын
print("This will always be run")
@chonkydog6262
@chonkydog6262 3 жыл бұрын
you mean print*
@mint-o5497
@mint-o5497 3 жыл бұрын
@@chonkydog6262 ye im pretty sure i typed it on mobile, so it auto capitalized the first letter
@pkavenger9990
@pkavenger9990 4 жыл бұрын
This is the best tutorial so far. This thing is kinda tricky one. Sometimes i understand it but when someone ask me to make them understand, i start thinking maybe i did not get the concept, i have to check again.
@SuperSuneel
@SuperSuneel 4 жыл бұрын
the main confusion has finally been solved!!! Thank you so much
Python Tutorial: Unit Testing Your Code with the unittest Module
39:13
Corey Schafer
Рет қаралды 1,3 МЛН
If __name__ == "__main__" for Python Developers
8:47
Python Simplified
Рет қаралды 376 М.
YouTube Play Buttons !! 😱😱
00:17
Tibo InShape
Рет қаралды 10 МЛН
5 Good Python Habits
17:35
Indently
Рет қаралды 333 М.
25 nooby Python habits you need to ditch
9:12
mCoding
Рет қаралды 1,7 МЛН
What does Python's __init__ method do?
6:56
Python and Pandas with Reuven Lerner
Рет қаралды 29 М.
10 Python Tips and Tricks For Writing Better Code
39:21
Corey Schafer
Рет қаралды 1,3 МЛН
If __name__ == '__main__' for Python Beginners
9:29
Indently
Рет қаралды 16 М.
5 Useful Dunder Methods In Python
16:10
Indently
Рет қаралды 49 М.