# ----- EXAMPLE ----- def net_price(list_price, discount=0, tax=0.05): return list_price * (1 - discount) * (1 - tax) # print(net_price(500)) # print(net_price(500, 0.1)) # print(net_price(500, 0.1, 0)) # ----- EXERCISE ----- import time def count(end, start=0): for x in range(start, end+1): print(x) time.sleep(1) print("DONE!") # count(10) # count(30, 15)
@Rosebeautyshop12342 жыл бұрын
Please make more on default arguments...
@smaransure22342 жыл бұрын
Bro they actually are awesome I always use them
@e-dit-z39742 жыл бұрын
You deserve millions
@farooqkota86926 ай бұрын
Agreed 💯
@auggiea9195 Жыл бұрын
U are so good at explaining these concepts! Thank u!
@studyingasyouwere2 жыл бұрын
Thank you for an awesome video. I found your videos while I was making a video on creating the Snake game in Python. Subscribed immediately 😆
@ViktorSamosiuk-wu5fq8 ай бұрын
It is absolutely great! I like python.
@Dexeyz Жыл бұрын
amazingly underrated video, explained perfectly. thank you bro code
@krzysiekkrzysiek90592 жыл бұрын
Good voice and excellent explanation 👍.
@hayronstitsantanamartinez2 жыл бұрын
Thanks for everything. Keep going.
@davidbandini34842 жыл бұрын
thank you so much for the video
@onlinecreations77812 жыл бұрын
Well explained ❤️
@sumitpaul20032 жыл бұрын
By any chance did you make any videos on introduction to Git & GitHub for beginners?... Ur videos are nicely explained and really thx, i really learned basics of python through your videos
@skyisthelimpet2 жыл бұрын
Your explanation is very good and clear. Love your vids bro
@hesham-d5m5 ай бұрын
thanks! the best course ever.
@jokeguy59462 жыл бұрын
Nice
@NotTheHeroStudios Жыл бұрын
How are you so good at explaining stuff so easy
@piotrkopcewicz52272 жыл бұрын
defaults arguments are defaults,love them :) thx
@Its.all.goodman2 жыл бұрын
Cool buddy 😎 👍
@minecraftprzemyslaw15PL2 жыл бұрын
nice tut
@The-Martian732 жыл бұрын
Mr. Bro , you're awesome Yeah, let's defeat the KZbin algorithm 🥋
@saipavan772 жыл бұрын
Perfect
@awesomedude44282 жыл бұрын
You're amazing!!!
@bekturasanbekov1979 Жыл бұрын
thx 4 vid bro !
@damakoushik36062 жыл бұрын
Sir please make the video on sql sir
@flamingice19 ай бұрын
wooow, ty for the vid ngl my teacher exaplaining this made no sence. btw what does time.sleep(1) do?
@Sturziii2 жыл бұрын
I am currently learning Java. Is this approach the same as "overloading methods" ?
@BroCodez2 жыл бұрын
very similar
@Weblearns2 жыл бұрын
How did you add Fundraiser symbol, can you please provide me some info.
@NamNguyen-mz4yh2 жыл бұрын
Well u can adjust the time in time.sleep() by how fast do u want to
@meghanamewati38902 ай бұрын
Where did he taught positional argument?
@SkyFly198532 жыл бұрын
It can be used in a video game made in Python... 🤔
@jadotati76412 жыл бұрын
Can you please make more java swing apps!!
@BroCodez2 жыл бұрын
I'm taking a break from Java for now, there's 150+ videos lol
@056vatsalapandey36 ай бұрын
why did we add 1 at end
@Shohjahon1492 жыл бұрын
Please make node js react vue js tutorials why all the time the same pyhthon and MySql
@BroCodez2 жыл бұрын
that's what people voted for in the past
@angryman93332 жыл бұрын
@@BroCodez please do Nodejs
@Dyson-yq1mk3 ай бұрын
Bro : tax = 0% The irs: 🤨
@Infinity5402 жыл бұрын
brooo
@hashimgoran8724 Жыл бұрын
Fortnite default😂😂
@Uberdurden Жыл бұрын
def products(we_bougt, its_price, its_total_taxes): print(f'we bought a {we_bougt}') print(f'its total price is a {its_price} dollar') print('total taxes is', its_total_taxes ) print('total is you will pay is a',its_price + its_total_taxes) products('Xbox Series S', 550 , 0.15) WE CAN MAKE SOMETHING ON LIKE THAT WE DO NOT NEED TO A RETURN THINGS:)))))