f-strings in Python | Python Tutorial - Day #28

  Рет қаралды 373,974

CodeWithHarry

CodeWithHarry

Күн бұрын

Пікірлер: 446
@CodeWithHarry
@CodeWithHarry 2 жыл бұрын
🎉Merry Christmas to all python learners🎉
@only_sanatan
@only_sanatan 2 жыл бұрын
same to u bhaiya
@ZenMen301
@ZenMen301 2 жыл бұрын
thanks our gift is this 100 day course
@rohankashyap9366
@rohankashyap9366 2 жыл бұрын
Happy Tulsi Diwash to all of you
@sameertaniyalam
@sameertaniyalam 2 жыл бұрын
Thank you. Same to you bhaiya
@richit7503
@richit7503 2 жыл бұрын
Aapko bhi bhaiya ji
@khizrshaikh9902
@khizrshaikh9902 2 жыл бұрын
7:46 You can print it as it is without writing f before double quotes like this: print("We use f-strings like this: Hey my name is {name} and I am from {country}") The output will be same as: print(f"We use f-strings like this: Hey my name is {{name}} and I am from {{country}}")
@rolitiwari8802
@rolitiwari8802 Жыл бұрын
Yeah exactly bro. ❤
@Shrenkstav
@Shrenkstav 9 ай бұрын
Yes you are right but Harry is trying to show that how to print along with curly brackets while using f-strings.😃
@debasishbesra2901
@debasishbesra2901 Жыл бұрын
Day6 of #100DaysOfCode. Today in this video 28, I learned about string formatting in Python using the format method and f-strings. The format method allows for more precise control over the formatting, such as specifying the number of decimal places. F-strings, introduced in PEP 498, provide a convenient way to embed Python expressions directly inside string literals for formatting. By prefixing a string with 'f', it becomes an f-string, making it easier to interpolate variables and expressions. Thank You Harry Bhaiya.
@aryyann05
@aryyann05 4 ай бұрын
bro did you complete the course or not?
@UVtech0001
@UVtech0001 2 ай бұрын
😂😂​@@aryyann05
@FaceSenseAustralia
@FaceSenseAustralia Жыл бұрын
Practice Questions for this exercise: 1. Create a program that asks the user to enter their name and their age. Print out a message addressed to them that tells them the year that they will turn 100 years old. 2. Write a program that calculates the area of a rectangle. Prompt the user for the length and width, then display the result using an f-string. 3. Develop a simple currency converter program. Ask the user for an amount in USD and convert it to euros using a fixed conversion rate. Display the result using an f-string. thanks, faceSense
@rejuantamim6939
@rejuantamim6939 Жыл бұрын
where i can get more problems like these?
@Top.Trending2
@Top.Trending2 7 ай бұрын
You can provide solution???
@navneetpathrabe9484
@navneetpathrabe9484 6 ай бұрын
1.Answer name = input("Enter your name: ") age = int(input("Enter your age: ")) print(f"{name} will turn 100 years in {100 - age}") base = float(input("Enter base: ")) height = float(input("Enter height: ")) Area_Of_Rectangle = base * height print(f"Area of rectangle is: {Area_Of_Rectangle} ") dollar_amount = float(input("Enter amount in dollars: ")) conversion_rate = 0.92 euro_amount = dollar_amount * conversion_rate print(f"The converted amount is: €{euro_amount:2f}")
@minahiljilani5042
@minahiljilani5042 6 ай бұрын
@@navneetpathrabe9484 hlo i want to print my name and my frnd name for 3 time if it above three time then loop will b terminated how i can solv
@HardikPareta
@HardikPareta 6 ай бұрын
00:01 Python provides string formatting to place variables inside strings conveniently. 01:07 Using f-strings to format strings in Python. 02:16 f-strings in Python for easy and convenient string formatting 03:08 Python f-strings allow easy string formatting with variables. 04:10 Formatting floating point numbers with f-strings. 05:24 F-strings allow easy formatting of strings with variables 06:37 Using f-strings to insert variables into strings 07:36 Using double curly brackets to display curly brackets in f-strings. Crafted by Merlin AI.
@Vishavpreet123
@Vishavpreet123 2 жыл бұрын
"This Python Course is Helpful" -Who remember This Line of Harrry Sir
@shreyanshitilwari22
@shreyanshitilwari22 Жыл бұрын
Meeeeeeee3ee!!!
@Subanbanu_Pathan
@Subanbanu_Pathan 2 жыл бұрын
Jo sab log paise lekar bhi nahi sikhte Vo Harry Bhai free me sikha rahe he Keep it harry Bhai And guys please share harry bhai's chanale as well as posible.
@nishantchaudhary6361
@nishantchaudhary6361 Жыл бұрын
question = ["Which country has largest army in the world ?" ,"Which country has fastest growing economy in the world","Which country has maximum number of time zones? "] answer = ["China","India","Russia"] que1 = print(question[0]) ans1 = input() if ans1 == answer[0] : print("Your answer is correct you have won 10,00,000 rupees") que2 = print(question[1]) ans2 = input() if ans2 == answer[1]: print("Your answer is correct you won 1,00,00,000 rupees") que3 = print(question[2]) ans3 = input() if ans3 == answer[2]: print("You won the game and you earn 7,00,00,000 rupees") else : print("Sorry you loss the game") else: print("Sorry you have earn zero rupees and you disqualified ") else: print("Sorry you have earn zero rupees and you disqualified ")
@profittohoga4078
@profittohoga4078 4 ай бұрын
I listened about this channel from a multi millionair stock trader of DELHI. then i seached this. and by GOD's grace i recalled my old days of 2003 when i learned my C, C++, C# from NIIT.
@YessajiRao
@YessajiRao Жыл бұрын
7:37 But Harry Bhai, if we want to print the string as it is without replacing the identifiers with corresponding values, we could simply remove that *"f"* before the string which will turn the f-string into a normal string
@abhimanyukarkara4218
@abhimanyukarkara4218 Жыл бұрын
I thought of the same
@rushexxoff
@rushexxoff Жыл бұрын
but in real programs you have to use f string generally with those {} brackets in use also so that is why it is helpful
@paulaneesh7
@paulaneesh7 2 жыл бұрын
f-strings are quite like Template Literals of JavaScript
@ZeshanMukhtar1
@ZeshanMukhtar1 2 жыл бұрын
Yeah 😊
@GijutsuTech
@GijutsuTech 6 ай бұрын
thats what i was thinking
@Atharva-Shinde
@Atharva-Shinde 7 ай бұрын
7:43 to show as it is just remove f print(f"hey my name is {name} and i am form {country}") like this print("hey my name is {name} and i am form {country}")
@biswajeet9826
@biswajeet9826 5 ай бұрын
One of the most Underrated Channels out there!!
@tajinder715
@tajinder715 2 жыл бұрын
whoooooooooooooooo ⚜
@abuhamid3541
@abuhamid3541 2 жыл бұрын
Bahoot jyada
@RamandeepKaur-iy1dj
@RamandeepKaur-iy1dj 2 жыл бұрын
Me also
@levi-07
@levi-07 2 жыл бұрын
Haa ye krlo pehle 😄
@chainsawman-ilia
@chainsawman-ilia 2 жыл бұрын
Bro even I am 😭
@tajinder715
@tajinder715 2 жыл бұрын
@@levi-07 keyboard vi thanda lag raha hai😂😂😂😂😂😂
@tanvirgsm
@tanvirgsm 2 ай бұрын
date 28 done, THANKS A LOT BROHTER, so much help ful each singe day of you're lecture
@jaiminbariya8830
@jaiminbariya8830 Жыл бұрын
#Harrybhai One day I'll definitely meet you bhai 🤘
@MuhammadRafay-we9nc
@MuhammadRafay-we9nc 8 ай бұрын
Python is best programming language
@RajNamdev_19
@RajNamdev_19 Жыл бұрын
LOVE YOU HARRY BHAI❤
@motivational_hub006
@motivational_hub006 4 ай бұрын
intresting
@vashisththakar2695
@vashisththakar2695 5 ай бұрын
Day -28 Done
@abhinav5786
@abhinav5786 Жыл бұрын
Present sir 😁 After a trip of 1 week I got 7 backlogs in this program.... Backlog 4/7 completed
@InnovativeCoders
@InnovativeCoders 2 жыл бұрын
Great Going Coding Ka Rang Chad Gaya He Ekdum
@anonymous____________________4
@anonymous____________________4 2 жыл бұрын
Pranam bhrata 🙏 apka bahutt baht dhanyawad ❤️😌🙏😇🧡💛😇
@soumyadipmajumder902
@soumyadipmajumder902 Жыл бұрын
In this video 8:20 time we can also delete the 'f' outside the double quotes to show calibrates with the parameter name, like print("My name is {name} and I am from {country}")
@krishgaikwad6108
@krishgaikwad6108 Жыл бұрын
yup, thats what i thought too !!!
@mathocity8337
@mathocity8337 Жыл бұрын
Beside printing {something}, what if you also want to print a variable in the same string? i.e. name = "Random" print (f"My name is {name} and I'm from {{country}}") In this case, you just can't remove f" " cuz you want to print {name} too.
@arohi_303
@arohi_303 3 ай бұрын
Day 28✨
@chainsawman-ilia
@chainsawman-ilia 2 жыл бұрын
Best topic fstrings The thing I want in c++ so much
@Vignesh-y4j
@Vignesh-y4j 4 ай бұрын
28th one!!
@man_united-z1h
@man_united-z1h 6 ай бұрын
Day 28 done ✅
@deadlygamer4692
@deadlygamer4692 Жыл бұрын
print("Welcome ladies and gentlemen to Kaun Banega Crorepati first question for 7 crore on your computer screen is ") q = ["How many colours are there in a rainbow?","(a)2 (b)5 (c)7 (d)8"] print(q) a = str(input("Enter the correct answer = ")) ans1 = "c" ans2 = "7" ans3 = "seven" ans4 = "Seven" ans5 = "C" if (a== ans1 or a==ans2 or a==ans3 or a==ans4 or a==ans5) : print("Congratulations!,You win 7 crore.") else : print("Sorry answer is wrong.")
@KoushikDas2005
@KoushikDas2005 Жыл бұрын
#Day28 #Present #CodeWithHarry #PythonChallenge Watching after 1 day ...was busy because of school exam preparation.
@biswajeet9826
@biswajeet9826 5 ай бұрын
You deserve the best in Life!!
@shahidaslam9968
@shahidaslam9968 2 жыл бұрын
Harry sir please make a video about ChatGPT. How to use ChatGPT for earning purpose
@jatinbhatt2222
@jatinbhatt2222 2 жыл бұрын
Present Sir on Day-28 ✋✋
@proudtobeindian1894
@proudtobeindian1894 2 жыл бұрын
#Day28 #100DaysOfCode No day missed yet.
@adityapradhan8474
@adityapradhan8474 Жыл бұрын
Majja aa raha hai harry bhai Python se to pyaar sa hogya hai
@mdsohanurrahmanhridoy1343
@mdsohanurrahmanhridoy1343 2 жыл бұрын
Completed day#28 challenge...😍
@Radhe_radhe2929
@Radhe_radhe2929 2 жыл бұрын
Day 28 🔥
@JoyBoy_013
@JoyBoy_013 Жыл бұрын
Great Harry bhai
@eashovon
@eashovon 2 жыл бұрын
Present from Bangladesh Brother.....#day28 Done
@haribaba2408
@haribaba2408 Жыл бұрын
Maja aara sekhne me 😊
@Abhinaw_singh3549
@Abhinaw_singh3549 2 жыл бұрын
merry Christmas harry bhai🎅🎅
@Karna-Sinjali
@Karna-Sinjali Жыл бұрын
Question = ("What is the capital city of Nepal") O1 = ("Kathmandu") O2= ("Pokhera") O3 = ("Jhapa") O4 = ("Nepaljung") option = [O1, O2, O3, O4,] print(option) money = 000 add = money + 1000 answer = O1 if answer in option: print("yes,You won the NRs 1000") print("Your total money is :", add) else: print("No, You lose money")
@FaceSenseAustralia
@FaceSenseAustralia Жыл бұрын
Practice Questions for this exercise: 1. Create a program that asks the user to enter their name and their age. Print out a message addressed to them that tells them the year that they will turn 100 years old. 2. Write a program that calculates the area of a rectangle. Prompt the user for the length and width, then display the result using an f-string. 3. Develop a simple currency converter program. Ask the user for an amount in USD and convert it to euros using a fixed conversion rate. Display the result using an f-string.
@Smilefrominsight
@Smilefrominsight 11 ай бұрын
@@FaceSenseAustralia !✨🤩
@thatcoolkid370
@thatcoolkid370 2 жыл бұрын
Day #28 in 100DaysOfCode. Thanks, harry bhai for this Christmas gift(100DaysOfCode).
@niteshch9166
@niteshch9166 2 жыл бұрын
Present Harry Sir!
@anonymous-ss8yc
@anonymous-ss8yc Жыл бұрын
Thankyou sir... I'm doing this course in April and my aim is to complete 10 videos everyday to get this course done in 10 days... it's the 3rd day and I'm just 2 videos away from today's goal... thank you so much sir this course is so helpful and I can imagine how much I will be changed after the completion of this course regarding my programming skills...again thank you ❤️❤️
@PHros
@PHros Жыл бұрын
Mera bhi aisa same goal tha lekin ab me 20-30 aik din me kar raha hoon
@anonymous-ss8yc
@anonymous-ss8yc Жыл бұрын
@@PHros good bro
@TopRTelugu
@TopRTelugu Жыл бұрын
finished?
@anonymous-ss8yc
@anonymous-ss8yc Жыл бұрын
@@TopRTelugu unfortunately no bro.. i was busy in doing college things.. I'll continue soon after my sessionals get over.. it's a vast thing and so it is important to learn all modules separately.. first build basic understanding of all modules and then take lectures and then practice for better results.. reply on this comment when you complete the whole course.. good luck
@shivamchaudhary8592
@shivamchaudhary8592 2 жыл бұрын
#Day28 Present Sir
@Trickyonline-tp9oe
@Trickyonline-tp9oe 2 жыл бұрын
Day 28 done!
@Radhe_radhe2929
@Radhe_radhe2929 2 жыл бұрын
Merry Christmas bhaiya ❤️🔥🔥👍💥⛄⛄
@geekytutorials5745
@geekytutorials5745 8 ай бұрын
Thanks bhaiya ❤
@forexspectrum4799
@forexspectrum4799 Жыл бұрын
superb brother
@CoderzGaming093
@CoderzGaming093 2 жыл бұрын
#day28 merry Christmas harry bhai🎅🎅
@biswajeet9826
@biswajeet9826 5 ай бұрын
Thanks a lot Sir!!
@Krishna40457
@Krishna40457 2 жыл бұрын
#Day28
@simple3688
@simple3688 2 жыл бұрын
💖 Merry ⛄ Christmas 💖⛄ Bro 😘
@pritam04z
@pritam04z Жыл бұрын
Present sir 🙏🙏
@fact45.
@fact45. 2 жыл бұрын
a=int(input("enter the hour")) if a==0 and a
@Berojgar.gyanii
@Berojgar.gyanii 9 ай бұрын
Good 💯 your code is correct!!
@Manish-qt1bz
@Manish-qt1bz 2 жыл бұрын
Present Sir 🔥
@vjournalbytej9832
@vjournalbytej9832 11 ай бұрын
Present Sir 🤚
@meditationmusic6482
@meditationmusic6482 2 жыл бұрын
Thanks sir.
@yatindrapabbati6878
@yatindrapabbati6878 2 жыл бұрын
Day28-PRESENT SIR!
@TalhaTariq-i2e
@TalhaTariq-i2e 8 ай бұрын
Nice👍
@FunFACT12331
@FunFACT12331 11 ай бұрын
day 28 completado stoico
@tonykrafton2205
@tonykrafton2205 Жыл бұрын
Present ! Day 28
@__Atif_7190
@__Atif_7190 Жыл бұрын
I create it Because for solving doubts
@sangitadutta3623
@sangitadutta3623 Жыл бұрын
#CodeWithHarry Sir I have started your 100 days of coding . Here's my ans questions = ["Whats color of crow ? ","a> Blue", "B> Black", "c> Red", "D> all of the above"] print("Welcome to KBC \t Let's start the GAME") key = input("Press 'y' if Yes") # print(type(key)) if str(key) == "y": print(' '.join(questions)) answer = input("Please select option ") if str(answer) == "B": print(" You Won Rs 50000") else: print("Wrong ans") else: print("Do you want to Exit")
@vireshs-iy1um
@vireshs-iy1um Жыл бұрын
Hype dude, u did quite a mistake in 6th line u have to remove this line " : join " coz it returns an error
@darkshadow8414
@darkshadow8414 Жыл бұрын
questions = ["Whats color of crow ? ","a> Blue", "B> Black", "c> Red", "D> all of the above"] print("Welcome to KBC \t Let's start the GAME") key = input("Press 'y' if Yes") # print(type(key)) if str(key) == "y": print(' '.join(questions)) answer = input("Please select option ") if str(answer) == "B": print(" You Won Rs 50000") elif answer=="a print("no this is incorrect") else: print("try again") else: print("Do you want to Exit")
@darkshadow8414
@darkshadow8414 Жыл бұрын
bro i really don't understand f strings can you teach me on easy way
@Aditya_Vyas
@Aditya_Vyas Жыл бұрын
Day 28 of Coding. Present Sir.
@dharvikop
@dharvikop 2 жыл бұрын
Day 28 done
@deekshithaparasu
@deekshithaparasu Жыл бұрын
#day 28 completed
@only_sanatan
@only_sanatan 2 жыл бұрын
ready to watch the legend's video
@UnderGamer_Official
@UnderGamer_Official 2 жыл бұрын
Sir please kivy & kivymd tutorial
@Nuvora.OFFICIAL
@Nuvora.OFFICIAL 2 жыл бұрын
Present Sir!
@ekanshsharma6256
@ekanshsharma6256 Жыл бұрын
8:16 we can simply remove f from the starting🤣😂
@junaidtanveer7191
@junaidtanveer7191 2 жыл бұрын
nice harry bhai
@sachinkumarsharma6483
@sachinkumarsharma6483 2 жыл бұрын
Day_28 Present Sir
@tusharkaushik5460
@tusharkaushik5460 2 жыл бұрын
Please make a course on unity too
@anonymousbruh9246
@anonymousbruh9246 2 жыл бұрын
BRo he is mainly Focused on web dev and high level programming languages. Check out bRackeyes course on yt
@satyampandey-fx8gz
@satyampandey-fx8gz 2 жыл бұрын
#daaay28 consistency maintain 20:53 25/12/2022
@MahadKhan873
@MahadKhan873 2 жыл бұрын
Imagine getting ultimate course Web development 2023🤦🏻🥰
@vaibhavnayak3416
@vaibhavnayak3416 Жыл бұрын
?
@MahadKhan873
@MahadKhan873 Жыл бұрын
@@vaibhavnayak3416 what?
@NEERAJ-dw9bt
@NEERAJ-dw9bt 10 ай бұрын
Present sir 🤚
@makripon
@makripon Жыл бұрын
Why need to print example of f-string inside f-string. simply remove f of begining. I printed this - This is how to create F-String: write variable name inside curly bracket like {variable-name} and put a f at begining. For example, f"my name is {firstName} {lastName}" using this - print('This is how to create F-String: write variable name inside curly bracket like {variable-name} and put a f at begining. For example, f"my name is {firstName} {lastName}"' )
@kartiksandhu2957
@kartiksandhu2957 4 ай бұрын
Harry bhai ye program run n ho rha hai Mera help kro do
@kunalgurav8194
@kunalgurav8194 2 жыл бұрын
Present sir wish you merry Christmas 💝⛄
@Mr.Kaushik
@Mr.Kaushik 2 жыл бұрын
thanks bhai
@anikshaha3024
@anikshaha3024 2 жыл бұрын
Merry chrismas harry vai
@jyotikale534
@jyotikale534 2 жыл бұрын
thanks sir
@theanonymous92
@theanonymous92 Жыл бұрын
28th day done... bit late but, Done
@qzarmy7059
@qzarmy7059 Жыл бұрын
I am present bhaiya ❤
@AkashSingh-xf6bd
@AkashSingh-xf6bd Жыл бұрын
f-string work like a string literal in JavaScript
@DevanshNautiyal-iy6so
@DevanshNautiyal-iy6so 3 ай бұрын
#Koun Banega Karo pati print() print("Welcome to the quiz program") print("There will be a 5 Question displaying on your screen one after one") print("Give answer according to the order") print("For every correct answer you will gain a point") print() a = input("Read the instructions and press any Enter to start") Question = ["Who developed Python Programming Language"," Which type of Programming does Python support","Is Python case sensitive when dealing with identifiers"," Which of the following is the correct extension of the Python file", " Is Python code compiled or interpreted"] Options1 = ["a) Wick van Rossum", "b) Rasmus Lerdorf", "c) Guido van Rossum", "d) Niene Stom",] Options2 = ["a) object-oriented programming", "b) structured programming", "c) functional programming", "d) all of the mentioned"] Options3 = ["a) no", "b) yes", "c) machine dependent", "d) none of the mentioned"] Options4 = ["a) .python", "b) .pl", "c) .py", "d) .p"] Options5 =["a) Python code is both compiled and interpreted", "b) Python code is only compiled", "d) Python code code is neither compiled nor interpreted", "c) Python is only interpreted"] for qs in Question: print(qs) if qs == Question[0]: for i in Options1: print(i) op = input("Enter your option: ") if op == "c" or op == "(c)" or op == "c)"or op == "Guido van Rosseum": input("Your answer is Correct ! Click enter ") else: print("Wrong answer") break elif qs == Question[1]: for i in Options2: print(i) op = input("Enter your opetion: ") if op == "d" or op == "(d)" or op == "d)"or op == "all fo the mentioned": input("Your answer is Correct ! Click enter ") else: print("wrong answer") break elif qs == Question[2]: for i in Options3: print(i) op = input("Enter your opetion: ") if op == "b" or op == "(b)" or op == "b)"or op == "yes": input("Your answer is Correct ! Click enter ") else: print("wrong answer") break elif qs == Question[3]: for i in Options4: print(i) op = input("Enter your opetion: ") if op == "c" or op == "(c)" or op == "c)"or op == ".py": input("Your answer is Correct ! Click enter ") else: print("wrong answer") break elif qs == Question[4]: for i in Options5: print(i) op = input("Enter your opetion: ") if op == "d" or op == "(d)" or op == "d)"or op == "Python is only interpreted": input("Your answer is Correct ! Click enter ") else: print("wrong answer") break
@__ayu
@__ayu 2 жыл бұрын
#DAY28 COMPLETED THANK YOU #CodeWithHarry
@thor4276
@thor4276 2 жыл бұрын
Kya baat hai guru jii
@tombyter
@tombyter 5 ай бұрын
present
@know_about_cricket63
@know_about_cricket63 2 жыл бұрын
harry bhai turtle module bhi sikhaoge kya??
@statusmaster5759
@statusmaster5759 2 жыл бұрын
Hello Bhai mera question ye h ki majority mere friends k pss window laptop h... Me MacBook lena chahta hu but dikkat ye h ki window and MacBook me connectivity me issues naa aaye kahi data share yaa kuch orr process me 🤔🤔🤔 plzz bhai is topic par video bana do and sare MacBook ko compare karke konsa kiske liye sahi rahega bataiye 🙏🙏🙏
@Fun-xz5zd
@Fun-xz5zd 2 жыл бұрын
I'm present.
@Keepitshort417
@Keepitshort417 2 жыл бұрын
present sir from Pakistan tharparkar
@rahuljoshi2360
@rahuljoshi2360 3 ай бұрын
Replit ki new policy ki wjah se or repls create nhi ho rhi :(
@technikalproblem6780
@technikalproblem6780 Жыл бұрын
Thank you sir for creating this video!
@absism34
@absism34 2 жыл бұрын
Just used f strings in previous exercise
@advancedtechnologies1531
@advancedtechnologies1531 2 жыл бұрын
Same here
@ANSHURAJESHRAJBHAR
@ANSHURAJESHRAJBHAR 5 ай бұрын
cool
@shaon1412
@shaon1412 2 жыл бұрын
Day #17 of asking to make a discord server.
Docstrings in Python | Python Tutorial - Day #29
8:32
CodeWithHarry
Рет қаралды 317 М.
Recursion in Python | Python Tutorial - Day #30
10:01
CodeWithHarry
Рет қаралды 406 М.
How many people are in the changing room? #devil #lilith #funny #shorts
00:39
Quilt Challenge, No Skills, Just Luck#Funnyfamily #Partygames #Funny
00:32
Family Games Media
Рет қаралды 54 МЛН
5 Mistakes Beginner Web Developers Make (Avoid These)
12:09
CodeWithHarry
Рет қаралды 94 М.
15 Python Libraries You Should Know About
14:54
ArjanCodes
Рет қаралды 406 М.
Format specifiers in Python are awesome 💬
5:21
Bro Code
Рет қаралды 87 М.
Modern Python logging
21:32
mCoding
Рет қаралды 208 М.
Top Skills to Learn in 2025
9:31
CodeWithHarry
Рет қаралды 8 М.
Python 101: Learn the 5 Must-Know Concepts
20:00
Tech With Tim
Рет қаралды 1,2 МЛН