# ---------- main.py ---------- import example result = example.pi result = example.square(3) result = example.cube(3) result = example.circumference(3) result = example.area(3) print(result) # ---------- example.py ---------- pi = 3.14159 def square(x): return x ** 2 def cube(x): return x ** 3 def circumference(radius): return 2 * pi * radius def area(radius): return pi * radius ** 2
@jag7450 Жыл бұрын
Loved the video. Would love to see a video from you on Python Flask
@passportbro904 Жыл бұрын
Bro, Sensai, please, quick python course on flask and django please, then ill have to find you to buy you a beer 🍺
@krzysiekkrzysiek90592 жыл бұрын
How it is possibile that so less people watch this great tutorials, when the channel has over 650k subscribers?
@maidenlessnix Жыл бұрын
Quite sad he has almost 1 mil now
@deathmeter7243 Жыл бұрын
They probarly subscribe to 'Bro Code' because of one great tutorial. They don't see the rest because, sadly, there aren't many returning viewers or subscribers.
@meandmymonkesewy8 ай бұрын
its because most of his subs come from the full courses section, for example, he got 16 million in his python video.
@kusalechisa Жыл бұрын
Bro you are the best instructor There is no other youtuber teach us like you. Keep it up. I love you.
@salaudeenabidemiibrahim47012 жыл бұрын
God bless you bro code, I love your method of teaching..more win
@shavindasilva2 жыл бұрын
I've learned a lot from ur vids BRO! thank you❤️🍀
@PaulMasucci2 ай бұрын
Thanks!!! I am an older person that learned basic C/C+ coding 35 years ago. Some concepts of Python are difficult for me to comprehend - especially from on line learning. You are making that easier!!! All I'm looking to use Python for is intro SBC programming another topic content poor in the webcast world. Hopefully watching your videos will help. Right now I trying to get a clearly defined conceptual understanding of Libraries, Modules, Subroutines and Functions and their interrelations, if any. Any help would be appreciated. I have to think there are a lot of us out there looking for this level of understanding. Regards.
@johnsally83202 жыл бұрын
Bro, you're amazing! Thank you
@alwinvj6487 Жыл бұрын
Great Explanation, Thanks for this video
@chemistrybynr88606 ай бұрын
Omg you made learning python so easy !
@mccauleybacalla222810 ай бұрын
Please post more python tutorials. thank you so much
@KiriB2 ай бұрын
thank you for the video! Super clear, helping me through my intro to programming college class
@MaximilianStan Жыл бұрын
best explanation possible
@kapibara2440 Жыл бұрын
Awesome content from the Bro 😊
@Plotwist320Ай бұрын
Great content
@davidbandini34842 жыл бұрын
Thanks for the video
@edvaniodas.calueto5 ай бұрын
Bro, you saved my life. Keep up the good work.
@mrhankey6423 күн бұрын
These videos are great
@methsaparanando3798 Жыл бұрын
thanks bro...awesome
@Coolguy-Anime7 күн бұрын
Ohhh so that’s how I saw a working calculator with like 5 lines of code (more like 20 but included a lot of algebra so worth it)
@Breww511 ай бұрын
Thanks man, this guy helps me get through college lol
@retrothink4 ай бұрын
Fantastic! Was clueless.
@aijazbirsfun5476 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
@ninjabeatz905 Жыл бұрын
awesomeness
@ryangrand1316Ай бұрын
awesome video, you got me like and subscribe
@rajchheda45146 ай бұрын
Hi Bro, your videos have been really helpful for revising my rusty python!!! I was wondering if you or anyone reading the comment has a text file of all the commented notes summarising the video at the start of every video. If someone does then it would be great to have it saved for whenever i need to refer to it.
@znacly1184 Жыл бұрын
Where’s that __init__.py at bro? Came here for that explanation, leaving devastated and unable to understand __init__.py. Awesome vid. Add that init!! Lol
@kr0ggyy9062 жыл бұрын
true
@DiamondMan12 жыл бұрын
would u ever do a tutorial on android studio?
@TheMotorcycleBoss Жыл бұрын
Fantastic tutorials bro. Quick question for you. Smack dab in the middle of the video, line 9 you typed "a, b, c, d = 1, 2, 3, 4," then you performed math using the letters but the program seemed to know what number each letter was assigned. This is a new concept to me. Would you be able to point me to a video or explain what it's called or what exactly was taking place there?
@gururajveershetty1 Жыл бұрын
Its pretty simple, he is packing multiple variables into one variable/line, separating them with commas: example instead of writing a = 1 b = 2 c = 3 d = 4 e = 5 you could write it more efficient like a,b,c,d,e = 1,2,3,4,5, btw they are sperated positionally so the first variable declared in the line is going to equal the 1st value written like a = 1 and b = 2 Hope this helps :)
@TheMotorcycleBoss Жыл бұрын
@@gururajveershetty1 thank you very much for such a detailed explanation. It helped a lot!
@Res---ú7 ай бұрын
A comma (,) seperates them
@TorabekRaufov-p8x2 ай бұрын
bro is the best! please reply only once!
@ahmetunaldi7601Ай бұрын
Bro is great
@techiebd_plyr_wb62462 жыл бұрын
U'r awesome Bro.👍👍👍
@craftrumzen23932 жыл бұрын
I wanted to know about "help modules" and "import"
@abumursad Жыл бұрын
Please make nodejs & Django course
@shivu.sonwane4429 Жыл бұрын
Bro❣️❤️
@bekturasanbekov1979 Жыл бұрын
thx 4 vid bro !
@saipavan772 жыл бұрын
Thanks
@saipavan77 Жыл бұрын
@Chat Bot yeah
@saipavan77 Жыл бұрын
@Chat Bot same aa?
@VAIBHAVMALHOTRA196 ай бұрын
If you import the whole module doesn't it decrease the speed of the code?
@arulananthams25402 жыл бұрын
First view
@mussahbanda1134 Жыл бұрын
i just tried exactly what you have done in this video but am getting an empty output, what can be the problem, please help?
@gururajveershetty1 Жыл бұрын
maybe you forgot to print the result or function?
@WhiteHatcode2 жыл бұрын
First 🥇
@juliandomsch2794 Жыл бұрын
i got a "ModuleNotFoundError:" when creating my one module. Im using spyder.
@juliandomsch2794 Жыл бұрын
what could be the issue?
@juliandomsch2794 Жыл бұрын
both file are on the same folder
@passportbro904 Жыл бұрын
Algorithm work harder for bro code
@TheBennestBen2 жыл бұрын
Hey bro
@legendhowl Жыл бұрын
chad
@洪秉旭2 жыл бұрын
頭香
@kr0ggyy9062 жыл бұрын
亂倫
@salaudeenabidemiibrahim47012 жыл бұрын
God bless you bro code... I love your method of teaching... more win
@aijazbirsfun5476 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
@aijazbirsfun5476 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
@aijazbirsfun5476 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji