if friends == 0: if weed == 0: print('the hell is unavoidable, gg wp') else: print('You escaped the hellhole for a while, but it wont last for long') else: print('You are dreaming, wake up. This is not happening.')
kagak nyangka gw gw belajar python ampeke video orang luar negri kekekeek gielee heheheh ayo semangattt pelan dan pasti!🎉🎉 apresiasi untuk diri sendiri karena bisa sedikit memahami inii horeee
import math radius = float(input("what is the radius of the circle: ")) pi= round(float(math.pi), 2) c = 2*pi*radius print(f"The circumfrence of the circle is: {c} cm.")
Thanks bro code I know very little about python and I have a project where I need to make a pizza ordering thing from scratch and this really helped so again thank you
import math a = float(input("Enter a:")) b = float(input("Enter b:")) c = math.sqrt(pow(a, 2) + pow(b, 2)) print(f"c is: {c}") Enter a:3 Enter b:4 c is: 5.0
I have always believed that education is the ultimate code to crack. Thanks to Bro Code, I have been able to unlock some of the most complex programming languages and computer science concepts with ease. Your videos have been instrumental in helping me level up my skills. So, from the bottom of my heart (and stack), thank you for being the best educational channel out there. Keep up the good work, Bro Code! Your dedication to educating the masses about programming languages and computer science has been truly inspiring. I would love to connect with you and learn more about your journey and how you became one of the best educational channels out there. again, thank you for being a constant source of knowledge and inspiration for us all. You're the real MVP, Most Valuable Programmer
import math Base=float(input("Enter the measurement of base:")) Perpendicular=float(input("Enter the measurement of perpendicular:")) hypotenuse = math.sqrt( pow(Base,2)+pow(Perpendicular,2)) print(f"The hypotenuse of the triangle is: {hypotenuse}")
hellow bro code we need a video like how they connect front end website to back end using python give a full clarification as well as make a video that would really help for us
so when doing the exercises I stopped and just did the whole code ahead and then if I had issues I would unpause and watch if I couldnt trouble shoot. on 3rd exercise I got the same output but my code for finding c was different. A = 3 B = 4 c = math.sqrt(a**2 + b**2) OUTPUT: C = 5 Is there a situation where using math.sqrt (pow() + pow()) is better or is it just good practice?
I coded ahed too and I used (pow() + pow()) just for practice and remembering the function. I think its just good for practice if you want to remember differnt math functions
instead of using pow(x, y) i used x**y, is it fine too? it works the same, but does it make difference in bigger projects? print('hypotenuse calculator') try: a = float(input('a: ')) except ValueError as e: print({e}) else: try: b = float(input('b: ')) except ValueError as e: print({e}) else: c = math.sqrt((a**2) + (b**2)) print(c)
import math a = float(input("Enter value for side A: ")) b = float(input("Enter value for side B: ")) c = math.sqrt((a**2) + (b**2)) print(f"The hypotenuse, or C, is equal to: {round(c, 2)}cm") This is how I did this one before watching it through, it still works but it seems like extra steps?
#exercise 1 import math radius=float(input("enter the radius of a circle:")) circumference=2*math.pi*radius print(f"circumference is {round(circumference, 2)}cm") #exercise 2 import math radius=float(input("enter the radius of a circle:")) area=math.pi*pow(radius, 2) print(f"the area of the circle is {round(area)}cm^2") #exercise 3 import math a=float(input("enter side A:")) b=float(input("enter side B:")) c=math.sqrt( pow(a, 2)+ pow(b, 2)) print(f"side C is : {c}")
Dont i have to use integer or float variables for these ?because in the previous lesson it gave an error saying that it was understood by the program as string pls help 😩
@@AvidAfrican Why are you saying that it's hating? I'm just saying that it sounds so wrong out of context. Which it does. I didn't say that what he was saying was wrong. I seriously appreciate and support Bro Code. I would never hate on Bro Code content. You seemed to have taken my comment negatively. I apologize for that. But I hope you understand that it was all simply humorous.
3:37 Is an amazing way to explain remainders. Understood it right away.
How relatable do you want the thumbnail to be?
Bro Code: Yes
Wonderful to learn python from your videos. You teach so well in an easy way. Sir can you please give some exercises as a daily lesson for beginners.
Absolutely delightful video. Thanks a lot for sharing.
bro is best in youtube i can say
How can you say that you have no friends by now you have gattered at least more than half a million of them
He's talking about you
@@TheBennestBen deadass
@@TheBennestBen bozo
@@TheBennestBennah bro I support you for that one
@@TheBennestBen looolll
if friends == 0:
if weed == 0:
print('the hell is unavoidable, gg wp')
else:
print('You escaped the hellhole for a while, but it wont last for long')
else:
print('You are dreaming, wake up. This is not happening.')
😂
lmao
Bro said it was going to be confusing, but made it the easiest thing I’ve ever seen
We have half of friend😂 good informative vid too
Very goood
very nice lesson.
kagak nyangka gw
gw belajar python ampeke video orang luar negri kekekeek
gielee heheheh ayo semangattt pelan dan pasti!🎉🎉
apresiasi untuk diri sendiri karena bisa sedikit memahami inii horeee
Gw juga njir belajar di orang luar wkwkwkw 😂
@KuchengRendem kekekkeke
Watched it. Liked it.
0:30 got me good, damn.
Excellent .
Bro: "Currently you have 0 friends"
That hit way too hard
NICELY DONE BRO...❤5/106
import math
radius = float(input("what is the radius of the circle: "))
pi= round(float(math.pi), 2)
c = 2*pi*radius
print(f"The circumfrence of the circle is: {c} cm.")
BRO you better then my teacher math😅❤
base = int(input("Enter the base: "))
height = int(input("Enter the height: "))
area = base * height / 2
print(f"The area is: {area} cm^2")
Thanks bro code I know very little about python and I have a project where I need to make a pizza ordering thing from scratch and this really helped so again thank you
Good job, thank you
import math
a = float(input("Enter a:"))
b = float(input("Enter b:"))
c = math.sqrt(pow(a, 2) + pow(b, 2))
print(f"c is: {c}")
Enter a:3
Enter b:4
c is: 5.0
I have always believed that education is the ultimate code to crack. Thanks to Bro Code, I have been able to unlock some of the most complex programming languages and computer science concepts with ease. Your videos have been instrumental in helping me level up my skills. So, from the bottom of my heart (and stack), thank you for being the best educational channel out there. Keep up the good work, Bro Code! Your dedication to educating the masses about programming languages and computer science has been truly inspiring. I would love to connect with you and learn more about your journey and how you became one of the best educational channels out there. again, thank you for being a constant source of knowledge and inspiration for us all. You're the real MVP, Most Valuable Programmer
Stop copy pasting
Robotic ass mf 🤖🤖🤖🤖🤖
This taught me more math than middleschool.
Superb
11:08 we can write the power as raidius**2 ? i tried it worked .
Love ❤ you for the exercise and explaining way.
For you 🌷⚘🌹💯
nice bro
Ceil (up by 1) vs floor (down by 1):
x = 3.72246
y = 4
z = 5
print(x.__floor__())
3
x = 3.12246
y = 4
z = 5
print(x.__ceil__())
4
import math
Base=float(input("Enter the measurement of base:"))
Perpendicular=float(input("Enter the measurement of perpendicular:"))
hypotenuse = math.sqrt( pow(Base,2)+pow(Perpendicular,2))
print(f"The hypotenuse of the triangle is: {hypotenuse}")
cool
hellow bro code we need a video like how they connect front end website to back end using python give a full clarification as well as make a video that would really help for us
Bro how to use trigonometrical equation in python
thanks bro!
Thumbnail is so true
I have -2 friends yes
tip = if you dont want to type the modul all the time you can import all its content by "from math import *"
Wow, this gave me an idea to make a math calculator
at 5:51 we can write it as pow(y, 3)
right?
Yes
so when doing the exercises I stopped and just did the whole code ahead and then if I had issues I would unpause and watch if I couldnt trouble shoot.
on 3rd exercise I got the same output but my code for finding c was different.
A = 3
B = 4
c = math.sqrt(a**2 + b**2)
OUTPUT: C = 5
Is there a situation where using math.sqrt (pow() + pow()) is better or is it just good practice?
I coded ahed too and I used (pow() + pow()) just for practice and remembering the function.
I think its just good for practice if you want to remember differnt math functions
instead of using pow(x, y) i used x**y, is it fine too? it works the same, but does it make difference in bigger projects?
print('hypotenuse calculator')
try:
a = float(input('a: '))
except ValueError as e:
print({e})
else:
try:
b = float(input('b: '))
except ValueError as e:
print({e})
else:
c = math.sqrt((a**2) + (b**2))
print(c)
عظيم
thanks Bro
x = 3.12246
y = 4
print(round(x, 4))
3.1225
Thank you! :)
You already made a full python course. Why do you make this tutorial? Btw Keep up the good work!!
He is updating the playlist with new good videos about the same, check "Python tutorial for beginners" playlist.
@@soyozzz ok
I haven't completed that course yet so I'm not sure if there's exercises at the end of it. This tutorial has exercises which are helpful too.
import math
a = float(input("Enter value for side A: "))
b = float(input("Enter value for side B: "))
c = math.sqrt((a**2) + (b**2))
print(f"The hypotenuse, or C, is equal to: {round(c, 2)}cm")
This is how I did this one before watching it through, it still works but it seems like extra steps?
sorry if this is a dumb question but what is "side a"?
best
Thanks a lot :D
Ended up in the loophole making myself create a sine and cosine rule calculator lol it was fun
Thank you ❤️😊
thx 4 vid bro !
These are always so low key funny.
love you bro
#exercise 1
import math
radius=float(input("enter the radius of a circle:"))
circumference=2*math.pi*radius
print(f"circumference is {round(circumference, 2)}cm")
#exercise 2
import math
radius=float(input("enter the radius of a circle:"))
area=math.pi*pow(radius, 2)
print(f"the area of the circle is {round(area)}cm^2")
#exercise 3
import math
a=float(input("enter side A:"))
b=float(input("enter side B:"))
c=math.sqrt( pow(a, 2)+ pow(b, 2))
print(f"side C is : {c}")
Dont i have to use integer or float variables for these ?because in the previous lesson it gave an error saying that it was understood by the program as string pls help 😩
2:38 continue
Edit:done!
699k subs, nice
better look 😎
print(f"The area of the circle is: {round(area, 2)} cm\u00b2")
0:30 bruhh🥲
Bro or Sir please upload REACTJS full course
hi can you explain pid?
no code this time???! can you paste it pls?
W thumbnail
10:29
COOL!
you didnt have to roast me like that
8.25 You said using math.ceil(x) for x= 9.1, you said it's is =10?
How is that possible???
But bro, I still have 0 friends :")
what about floor division??
what about ghost division??
3:09
🧡🧡🧡
are fundraiser videos not recommended? I don't see your videos from my subscriptions.
im crying while watching
Bro the thumbnail💀
Your channel is interesting but too fast so it's difficult to catch up to what you are teaching. i wish it was taught a little simpler and slower
late response but you can always play the video in ,75% speed or just pause the video to soak in what you just learned
1:29 out of context 💀
And then it's followed up by 1:39.
2:20 😭
You are just hating on this great content for beginners
@@AvidAfrican
Why are you saying that it's hating? I'm just saying that it sounds so wrong out of context. Which it does. I didn't say that what he was saying was wrong. I seriously appreciate and support Bro Code. I would never hate on Bro Code content.
You seemed to have taken my comment negatively. I apologize for that. But I hope you understand that it was all simply humorous.
@Curious_Clover thanks for taking your time to explain.. I apologize for the misunderstanding.) We are brothers in Bro Code. United we stand.)
+999999999 aura