What are Python modules? 📨

  Рет қаралды 75,864

Bro Code

Bro Code

Күн бұрын

Пікірлер: 64
@BroCodez
@BroCodez 2 жыл бұрын
# ---------- 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
@jag7450 Жыл бұрын
Loved the video. Would love to see a video from you on Python Flask
@passportbro904
@passportbro904 Жыл бұрын
Bro, Sensai, please, quick python course on flask and django please, then ill have to find you to buy you a beer 🍺
@krzysiekkrzysiek9059
@krzysiekkrzysiek9059 2 жыл бұрын
How it is possibile that so less people watch this great tutorials, when the channel has over 650k subscribers?
@maidenlessnix
@maidenlessnix Жыл бұрын
Quite sad he has almost 1 mil now
@deathmeter7243
@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.
@meandmymonkesewy
@meandmymonkesewy 8 ай бұрын
its because most of his subs come from the full courses section, for example, he got 16 million in his python video.
@kusalechisa
@kusalechisa Жыл бұрын
Bro you are the best instructor There is no other youtuber teach us like you. Keep it up. I love you.
@salaudeenabidemiibrahim4701
@salaudeenabidemiibrahim4701 2 жыл бұрын
God bless you bro code, I love your method of teaching..more win
@shavindasilva
@shavindasilva 2 жыл бұрын
I've learned a lot from ur vids BRO! thank you❤️🍀
@PaulMasucci
@PaulMasucci 2 ай бұрын
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.
@johnsally8320
@johnsally8320 2 жыл бұрын
Bro, you're amazing! Thank you
@alwinvj6487
@alwinvj6487 Жыл бұрын
Great Explanation, Thanks for this video
@chemistrybynr8860
@chemistrybynr8860 6 ай бұрын
Omg you made learning python so easy !
@mccauleybacalla2228
@mccauleybacalla2228 10 ай бұрын
Please post more python tutorials. thank you so much
@KiriB
@KiriB 2 ай бұрын
thank you for the video! Super clear, helping me through my intro to programming college class
@MaximilianStan
@MaximilianStan Жыл бұрын
best explanation possible
@kapibara2440
@kapibara2440 Жыл бұрын
Awesome content from the Bro 😊
@Plotwist320
@Plotwist320 Ай бұрын
Great content
@davidbandini3484
@davidbandini3484 2 жыл бұрын
Thanks for the video
@edvaniodas.calueto
@edvaniodas.calueto 5 ай бұрын
Bro, you saved my life. Keep up the good work.
@mrhankey64
@mrhankey64 23 күн бұрын
These videos are great
@methsaparanando3798
@methsaparanando3798 Жыл бұрын
thanks bro...awesome
@Coolguy-Anime
@Coolguy-Anime 7 күн бұрын
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)
@Breww5
@Breww5 11 ай бұрын
Thanks man, this guy helps me get through college lol
@retrothink
@retrothink 4 ай бұрын
Fantastic! Was clueless.
@aijazbirsfun547
@aijazbirsfun547 6 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
@ninjabeatz905
@ninjabeatz905 Жыл бұрын
awesomeness
@ryangrand1316
@ryangrand1316 Ай бұрын
awesome video, you got me like and subscribe
@rajchheda4514
@rajchheda4514 6 ай бұрын
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
@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
@kr0ggyy906
@kr0ggyy906 2 жыл бұрын
true
@DiamondMan1
@DiamondMan1 2 жыл бұрын
would u ever do a tutorial on android studio?
@TheMotorcycleBoss
@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
@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
@TheMotorcycleBoss Жыл бұрын
@@gururajveershetty1 thank you very much for such a detailed explanation. It helped a lot!
@Res---ú
@Res---ú 7 ай бұрын
A comma (,) seperates them
@TorabekRaufov-p8x
@TorabekRaufov-p8x 2 ай бұрын
bro is the best! please reply only once!
@ahmetunaldi7601
@ahmetunaldi7601 Ай бұрын
Bro is great
@techiebd_plyr_wb6246
@techiebd_plyr_wb6246 2 жыл бұрын
U'r awesome Bro.👍👍👍
@craftrumzen2393
@craftrumzen2393 2 жыл бұрын
I wanted to know about "help modules" and "import"
@abumursad
@abumursad Жыл бұрын
Please make nodejs & Django course
@shivu.sonwane4429
@shivu.sonwane4429 Жыл бұрын
Bro❣️❤️
@bekturasanbekov1979
@bekturasanbekov1979 Жыл бұрын
thx 4 vid bro !
@saipavan77
@saipavan77 2 жыл бұрын
Thanks
@saipavan77
@saipavan77 Жыл бұрын
@Chat Bot yeah
@saipavan77
@saipavan77 Жыл бұрын
@Chat Bot same aa?
@VAIBHAVMALHOTRA19
@VAIBHAVMALHOTRA19 6 ай бұрын
If you import the whole module doesn't it decrease the speed of the code?
@arulananthams2540
@arulananthams2540 2 жыл бұрын
First view
@mussahbanda1134
@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
@gururajveershetty1 Жыл бұрын
maybe you forgot to print the result or function?
@WhiteHatcode
@WhiteHatcode 2 жыл бұрын
First 🥇
@juliandomsch2794
@juliandomsch2794 Жыл бұрын
i got a "ModuleNotFoundError:" when creating my one module. Im using spyder.
@juliandomsch2794
@juliandomsch2794 Жыл бұрын
what could be the issue?
@juliandomsch2794
@juliandomsch2794 Жыл бұрын
both file are on the same folder
@passportbro904
@passportbro904 Жыл бұрын
Algorithm work harder for bro code
@TheBennestBen
@TheBennestBen 2 жыл бұрын
Hey bro
@legendhowl
@legendhowl Жыл бұрын
chad
@洪秉旭
@洪秉旭 2 жыл бұрын
頭香
@kr0ggyy906
@kr0ggyy906 2 жыл бұрын
亂倫
@salaudeenabidemiibrahim4701
@salaudeenabidemiibrahim4701 2 жыл бұрын
God bless you bro code... I love your method of teaching... more win
@aijazbirsfun547
@aijazbirsfun547 6 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
@aijazbirsfun547
@aijazbirsfun547 6 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
@aijazbirsfun547
@aijazbirsfun547 6 ай бұрын
Radhe Radhe Sanatan Hi Satya Hai Jai To All Gods & Godesses Jai Baba Farid Ji Jai Radhaswami Baba Ji
What is Python scope resolution? 🔬
5:34
Bro Code
Рет қаралды 34 М.
Learn Python OOP in under 20 Minutes
18:32
Indently
Рет қаралды 114 М.
Увеличили моцареллу для @Lorenzo.bagnati
00:48
Кушать Хочу
Рет қаралды 9 МЛН
Smart Sigma Kid #funny #sigma
00:33
CRAZY GREAPA
Рет қаралды 24 МЛН
How Many Balloons To Make A Store Fly?
00:22
MrBeast
Рет қаралды 160 МЛН
Top 18 Most Useful Python Modules
10:50
Tech With Tim
Рет қаралды 933 М.
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 575 М.
How To Create PowerPoint Presentations Using Python
7:19
Taylor's Software
Рет қаралды 502
Importing Your Own Python Modules Properly
9:56
NeuralNine
Рет қаралды 242 М.
Why is Python 150X slower than C?
10:45
Mehul - Codedamn
Рет қаралды 30 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН
Modules, Packages, Libraries - What's The Difference?
6:08
NeuralNine
Рет қаралды 25 М.
Let's code a beginner Python BANKING PROGRAM 💰
15:01
Bro Code
Рет қаралды 270 М.
Увеличили моцареллу для @Lorenzo.bagnati
00:48
Кушать Хочу
Рет қаралды 9 МЛН