#17 Python Tutorial for Beginners | Swap 2 Variables in Python

  Рет қаралды 958,734

Telusko

Telusko

Күн бұрын

Check out our courses:
Enterprise Java Spring Microservices: go.telusko.com...
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : go.telusko.com...
Coupon: TELUSKO20 (20% Discount)
Udemy Courses:
Spring: go.telusko.com...
Java:- go.telusko.com...
Java Spring:- go.telusko.com...
Java For Programmers:- go.telusko.com...
Python : go.telusko.com...
Git : go.telusko.com...
Docker : go.telusko.com...
For More Queries WhatsApp or Call on : +919008963671
website : courses.telusk...
Instagram : / navinreddyofficial
Linkedin : / navinreddy20
TELUSKO Android App : bit.ly/TeluskoApp
Discord : / discord
In this lecture we are discussing about different ways to swap two numbers:
-- suppose we have two variables a and b and we want to swap the value of a and b
-- we can do this by directly assigning the value of b to a and a to b lead to loose of value of a and b
-- we can do this by using temp variable
-- we can do this by using xor operator
-- we can do this by using python technique
directly assigning leads to loose of value
a=5
b=6
a=b
print(a)
6
print(b)
6
a=5 # resign the value of a to 5
use temp variable for swapping
temp=a
a=b
b=temp
print(a)
6
print(b)
5
#without using third variable we can swap the value
a=a+b
b=a-b
a=a-b
print(a)
5
print(b)
6
#use of xor operator for swapping
a=a^b
b=a^b
a=a^b
print(a)
6
print(b)
5
in python we have another technique
a,b=b,a
print(a)
5
print(b)
6
Github :- github.com/nav...
Python for Beginners :- bit.ly/3JOLQhl
Java and Spring Framework For beginners with Spring Boot : - bit.ly/3LDMj8D
Java Tutorial for Beginners (2023) :- bit.ly/3yARVbN
Check out our website: www.telusko.com
courses.telusko.com
Subscribe to our other channel:
Navin Reddy : / @navinreddy
Telusko Hindi : / @teluskohindi
Donation & Support:
Indian Payment : www.instamojo....
PayPal Id : navinreddy20
Patreon : navinreddy20

Пікірлер: 410
@gitanjalidas4762
@gitanjalidas4762 4 жыл бұрын
I feel like i am in a class. So good sound, english, way of learning and teaching... Wow, i didnt expect so much! You're awesome! Keeo rocking!🙃
@8binodkumarbinodkumar936
@8binodkumarbinodkumar936 4 жыл бұрын
Sir are there any notes of yours u are really osm and my last helper..
@full_disclosure_now5844
@full_disclosure_now5844 3 жыл бұрын
I'm studying Python in a Master course and Telusko is better than my professors, keep doing it please!
@POTPOURRI.1
@POTPOURRI.1 Ай бұрын
so how far did you come now after 3 years? iam starting my cs bachelors in a month and just discovered this channel..learning python whole day,in love with it actually .Would i be able to be a junior back end developer just with python knowldge and just after a year?Are you doing good in your profession now?
@NitinJainNoida
@NitinJainNoida 5 жыл бұрын
To calculate XOR of two numbers, the thumb rule is, "If the two digits are same then put 0 else if they are different put 1 ". For.e.g calculate xor of 10 and 20. So the binary of 10 and 20 is shown below and the calculation 01010 10100 ----------- 11110 which is 30 Thanks
@tanzimulayaantanaf8969
@tanzimulayaantanaf8969 4 жыл бұрын
Thanks man
@rahulpareek7450
@rahulpareek7450 4 жыл бұрын
Cool....thanks 🤘🏻👍🏻
@indhudinesh2572
@indhudinesh2572 3 жыл бұрын
Whoa thanks
@krishnapawar2056
@krishnapawar2056 3 жыл бұрын
thanks
@infinisidoracle4487
@infinisidoracle4487 3 жыл бұрын
how it will works for xor of 10 and -20 ??
@fccy9760
@fccy9760 3 жыл бұрын
thank you so much! i just spent half an hour trying to understand my professor's analogy for variable swapping. this was straightforward and comprehensive, thank you!!!
@kashishchadha18
@kashishchadha18 4 жыл бұрын
If your confused like me how to use phycharm then just go to tutorial 17 it's all about how to use the software
@samindhungana6361
@samindhungana6361 4 жыл бұрын
Thank you
@PBrokenShowsEtechyguy
@PBrokenShowsEtechyguy 4 жыл бұрын
thanks kashish
@samrudhraja224
@samrudhraja224 4 жыл бұрын
Thank you
@nishuahuja1688
@nishuahuja1688 4 жыл бұрын
Thank you
@maedre9330
@maedre9330 4 жыл бұрын
To use pycharm ,open it , make a new project, right click on blank screen, click on create and choose python file. Then open it. Type urncode and use shift+f10 to run it.preyty simple
@sahilprajapati8306
@sahilprajapati8306 4 жыл бұрын
Another way to swap- a = a*b b = a/b a = a/b 👍👍👍👍 By the way big fan...
@shaikhimran3401
@shaikhimran3401 4 жыл бұрын
Its should be a = a*b b = a//b a = a//b Then u will ans single number .. without .0
@deepthichaitanya9111
@deepthichaitanya9111 4 жыл бұрын
yes o/p comes in float. Need to use //(Integer division) to get correct o/p if using integers.
@cartoons__for__kids_Hindi
@cartoons__for__kids_Hindi 4 жыл бұрын
But you are wasting 1bit
@mayankjulah4408
@mayankjulah4408 4 жыл бұрын
You haven't explained how to use Pycharm in any of your previous video and you're using it in this video without even telling the fundamentals of it. It's not fair.I am sure a lot of viewers (Including me) won't be able to get this and will find it confusing. I myself have wasted a lot of time just trying to figure out Pycharm. So please take care of all this stuff.
@ashishdash2010
@ashishdash2010 5 жыл бұрын
When i saw this in java i was confused that how this formula just worked. I was confused about swapping.. But now all that stuff is cleared.. Thanks to naveen bro...
@vineethkumar2272
@vineethkumar2272 6 жыл бұрын
I learned The Xor swapping here Tq for that Navin Sir Finally in Telusko nenu Telusukunna
@vidhyavarshiniprakash4574
@vidhyavarshiniprakash4574 5 жыл бұрын
Thanks bro seriously....it was damn good even for a beginner!!!
@kakarlasundarganesh3216
@kakarlasundarganesh3216 5 жыл бұрын
Please give us a lesson to work with pycharm environment.we r not able to get u
@boopahari9062
@boopahari9062 4 жыл бұрын
Yeah
@tharunkumar9208
@tharunkumar9208 4 жыл бұрын
Same bro....dont know how to use pycharm...its very confusing
@sangu2227
@sangu2227 4 жыл бұрын
@@tharunkumar9208 same here bro plz tell us how to use pycharm
@anithaachal1537
@anithaachal1537 4 жыл бұрын
Go to tutorial 17
@rajvaibhavtawadkar164
@rajvaibhavtawadkar164 5 жыл бұрын
I find also different way swaping a=a*b b=a/b a=a/b Nice video 😃
@harshgupta9761
@harshgupta9761 4 жыл бұрын
If any of a and b is 0 then this logic don't work
@mikemcconeghy4658
@mikemcconeghy4658 4 жыл бұрын
He keeps calling us aliens, making me wonder what planet he is from.
@_sauravnarang
@_sauravnarang 4 жыл бұрын
alien means unknowns
@kaushik7144
@kaushik7144 4 жыл бұрын
xD
@kapila112
@kapila112 4 жыл бұрын
Because we're new to Python world 🙄
@kaushik7144
@kaushik7144 4 жыл бұрын
@@kapila112 yeah good point
@vihaanshandilya2476
@vihaanshandilya2476 4 жыл бұрын
@@kapila112 true 🤣🤣🤣🤣
@adityabhambhani207
@adityabhambhani207 3 жыл бұрын
i have been learning alot from your videos sir ......your way of teaching is awesome, learnt more in 13 videos than in any other year
@kyle.winter
@kyle.winter 5 ай бұрын
I was searching high and low for a good explanation of swapping variables with a third variable. This was by far the easiest to understand!
@nairunni60
@nairunni60 3 ай бұрын
Revisited after a long gap. Great lectures
@ShivamPanchbhai
@ShivamPanchbhai 5 жыл бұрын
a=a^b b=a^b a=a^b sir aap konsi duniye se aye ho never thought of using xor in this way
@ayush4731
@ayush4731 5 жыл бұрын
Welcome to the alien world :)
@GgsbdbdVvshjx
@GgsbdbdVvshjx 4 ай бұрын
well your method is good but is not accurate , your answers will be in decimal if you use your method. Example, if a = 36 and b = 56, then you use your method your answer will be 56.6 for a and 36.6 for b but you can correct it by typing = int(a) which is 56 and int(b) which is 36
@abhishekshrivastav5410
@abhishekshrivastav5410 4 жыл бұрын
For those of you wondering how he got the pycharm ide go to video no. 17 @5:40
@shivanishrivastava4539
@shivanishrivastava4539 4 жыл бұрын
Hi, Navin I didn't understand why there's formula for swaping and that's clearly doing iteration adding/substracting making it one another step!
@aravindamatha
@aravindamatha 4 жыл бұрын
sir because of you i learned python very fast
@ayaazahmad2888
@ayaazahmad2888 3 жыл бұрын
You are far better than my subject teacher..👍🏻
@mathstutorclass10thmathsso86
@mathstutorclass10thmathsso86 4 жыл бұрын
Very nice teaching sir.....i am really enjoying.... Thanks for these informative vdos
@vivekp5619
@vivekp5619 4 жыл бұрын
a mechanical engineer is learning python bcaz of u, thank u gurujiiiiiiiiiiiiiiiii
@manishkadam6724
@manishkadam6724 4 жыл бұрын
A CA student learning Programming Because of Him. Respect for this MAN !!
@anindyabanerjee6262
@anindyabanerjee6262 3 жыл бұрын
Sir, your mental thinking is unbeleavable
@AMAdet
@AMAdet 2 жыл бұрын
wow, this swapping concept is amazing. Thanks Navin for this
@shridayesinghgondal7527
@shridayesinghgondal7527 4 жыл бұрын
Sir we can use "a, b = b, a" also... It works . . Big Fan🙏
@nhnsaru
@nhnsaru 3 жыл бұрын
Right
@artmaster9409
@artmaster9409 4 жыл бұрын
Thank u so much sir😃ur the best teacher of programming.ur all videos are excellent and understandable....and all videos are helpful.once again thanks for making all those videos☺️
@vinitbishnoi8752
@vinitbishnoi8752 5 жыл бұрын
use a,b=b,a
@octametamer
@octametamer 4 жыл бұрын
you are smarter then him
@theodoramavrikiou3268
@theodoramavrikiou3268 3 жыл бұрын
great, now i can simply copy this technique to finish my computer homework that our computer teacher has given us. Thank you wise man.
@srushtiagarwal2748
@srushtiagarwal2748 5 жыл бұрын
sir, explain concept of rotation with example
@yogeshkumarshankariya642
@yogeshkumarshankariya642 4 жыл бұрын
Dear sir, I think you should give guidance regarding how to create or familiar with pycharm.
@AmitSingh-er3lk
@AmitSingh-er3lk 5 жыл бұрын
Your way of teaching is amazing
@yashbinwani5536
@yashbinwani5536 4 жыл бұрын
Bro u r Magician
@kkartheek4378
@kkartheek4378 4 жыл бұрын
print ("ANOTHER METHOD FOR SWAPPING TWO VARIABLES IN PYTHON") a=5 b=6 a=a*b # a = 5 * 6= 30 a : 30 b=a/b # b=30 / 6= 5 b : 5 a=a/b # a=30 / 5=6 a : 6 print(a) print(b) Output: 6 5
@anushaganji6395
@anushaganji6395 5 жыл бұрын
Hi Naveen, could you please show us to use "temp" for swapping 3 variables
@rahulpareek7450
@rahulpareek7450 4 жыл бұрын
It depend on you then in what manner you want to swap.... If a=1 b = 2 c= 3 For a=2, b=3 , c= 1.... Then lets swap as follows: temp = a a= b b = c c= temp..... Similarly in any manner you can do ....
@moodybaalika3102
@moodybaalika3102 4 жыл бұрын
@@rahulpareek7450 How can we use the formula for three variables??
@ritikaratan3195
@ritikaratan3195 4 жыл бұрын
@@rahulpareek7450 ya this is right we can swap the variables this way.
@ritikaratan3195
@ritikaratan3195 4 жыл бұрын
@@moodybaalika3102 a=1,b=2,c=3 a=a+b+c b=a-b-c c=a-b-c a=a-b-c You will get a=3,b=2,c=1
@arunaagt8229
@arunaagt8229 5 жыл бұрын
1.Are you running this program in pycharm? 2.what is the valid interpreter in pycharm while running a program?
@AMiTSingh-th6pt
@AMiTSingh-th6pt 4 жыл бұрын
But XOR also performs the same function as addition in the first line of formula that means it adds a and b. So , how it uses less number of bits. Can you explain
@muhammadseyan8361
@muhammadseyan8361 3 жыл бұрын
it simply does not perform the same operation. search for XOR swap in wikipedia
@cosmicwarriorx1
@cosmicwarriorx1 4 жыл бұрын
Navin can you give quick tutorial to switch to pycharm. thanks
@sambhavmittal581
@sambhavmittal581 6 жыл бұрын
could u pls make a video on how python different from another language (By using Functions) those who intrested pls like and reply this
@benindi
@benindi 4 жыл бұрын
This was very informative. I did not know that Python was this good
@ShivamPanchbhai
@ShivamPanchbhai 5 жыл бұрын
how can't this channel have billion subscribers
@II_xD_II
@II_xD_II 5 жыл бұрын
coz this is not T-Series
@Rock28099
@Rock28099 5 жыл бұрын
🤣🤣
@saidedipya7805
@saidedipya7805 2 жыл бұрын
Very good explanation...short vedios are creating intrest to watch more.Thank you
@vanitha433
@vanitha433 3 жыл бұрын
Awesome teaching
@shashwathx6571
@shashwathx6571 4 жыл бұрын
this is the best python tutorial i have ever seen
@mdabusharif3842
@mdabusharif3842 6 жыл бұрын
Sir add game tutorial as well...it will cover more area..also it will be fun to learn..!!!!
@II_xD_II
@II_xD_II 5 жыл бұрын
not for class 2 -_- even im in 8th and hate that idea
@shankargope2475
@shankargope2475 Жыл бұрын
Wonderful the concept of swapping variables is really amazing👌. You have explained with different concepts to execute this and it's clear to me now specially the rot_two(). Thank you very much for such efforts❤
@abdulmateen7486
@abdulmateen7486 9 ай бұрын
Excellent video. Pl clear the concept of "wasting 1 bit"
@64_hrushant_raghwarte44
@64_hrushant_raghwarte44 3 жыл бұрын
It's a really helpful for me.... thank you sir😇
@JourneywithRaquel
@JourneywithRaquel 4 жыл бұрын
I have been loving the videos and learning a lot. At this point I think what is occurring for me is that I have learned the lessons up to this point but how do I use what I have learned? What would I be using it for? How do I get it to stick without application and repetition? Help!
@vakhariyajay2224
@vakhariyajay2224 2 жыл бұрын
Thank you very much. You are a genius.
@keerthanareddy8856
@keerthanareddy8856 4 жыл бұрын
Your explanation is very well sir..I'm very thankful for your lectures☺☺ If==> a,b,c=1,2,3 a,b,c=c,a,b=b,a,c=c,b,a print(a,b,c) What will be stored in a,b,c? I'm waiting for your answer sir I also need explanation sir Thank you...!!
@labdhogranagasamudram4364
@labdhogranagasamudram4364 4 жыл бұрын
New (a, b, c)=(2.3.1)
@keerthanareddy8856
@keerthanareddy8856 4 жыл бұрын
@@labdhogranagasamudram4364 would you pls explain the procedure🙂!
@labdhogranagasamudram4364
@labdhogranagasamudram4364 4 жыл бұрын
@@keerthanareddy8856 Actually I'm not able to txt the compilation process here😅 The value changes according to the nxt =... Or else if u want u can mail me I'll send the pic of my compiled one
@labdhogranagasamudram4364
@labdhogranagasamudram4364 4 жыл бұрын
@@keerthanareddy8856 actually sry for late😂
@keerthanareddy8856
@keerthanareddy8856 4 жыл бұрын
@@labdhogranagasamudram4364 ur mail I'd??
@gowthama5833
@gowthama5833 3 жыл бұрын
You are really awesome sir teaching way is excellent, while iam studying final year iam fearing about python course but when I saw ur videos it's very easy 😁
@ysabhishekmishra
@ysabhishekmishra 2 жыл бұрын
import numpy as np a=3 b=6 temp=a a=b b=temp print(a,b)
@meeram9859
@meeram9859 2 жыл бұрын
Thanks for explaining variety of swapping
@yashisingh2204
@yashisingh2204 3 жыл бұрын
my first python project
@internetuser2845
@internetuser2845 4 жыл бұрын
0:34 How he opened that tab to check the result
@cocojamborambo5435
@cocojamborambo5435 4 жыл бұрын
Shift+F10 or you can just hit Run
@rakshitrakshit6022
@rakshitrakshit6022 4 жыл бұрын
great video sir i am able to learn very easily from this
@Shaida142
@Shaida142 2 жыл бұрын
can you explain a=a^b,b=a^b,a=a^b is how its work any logic inside on it, because its work for me
@alienalien2612
@alienalien2612 3 жыл бұрын
Thanks Sir🤩
@shashikumargandhi1548
@shashikumargandhi1548 3 жыл бұрын
I am a 72 years old person learning Python from U-tube. Which book would you like to suggest for taking me from basic scratch to advanced level...SK Gandhi
@Varsha1-t9r
@Varsha1-t9r Ай бұрын
Did you learnt well?
@asutoshmohapatra1339
@asutoshmohapatra1339 4 жыл бұрын
Great video no one ever taught me that xor method
@pillasatish8826
@pillasatish8826 2 жыл бұрын
Superb explanation...you are the best among all which i have seen.. Can you please share a notes or pdf if you have
@kaursimran191
@kaursimran191 3 жыл бұрын
And ur way of talking is really cool😎
@kshamaawasthi4523
@kshamaawasthi4523 3 жыл бұрын
Amazing ...you make it so simple...u have deep knowledge❤️
@Rajadahana
@Rajadahana 2 жыл бұрын
To understand the 2nd method at 1:50 I thought of a story. Just imagine that you have two rods and also two stickers called "A" and "B". You take the rod with a length of 5 and paste the sicker "A" on it. Then you take the other rod with a length of 6 and paste the sicker "B" on it. Now you join the two, which is with a length of 11, you leave the sticker "A" on it and remove the sticker "B". Now you cut away the pole from the joint and paste the sticker "B" on the side of the length with 5. You leave the sticker "A" on the side with a length of 6. If you could visualize this you will understand this method easily. Keep it up!!!
@snehavedpathak3573
@snehavedpathak3573 3 жыл бұрын
Hello sir.. Just curious.. If we take 2 input from user n1 and n2 and without doing any operations we just print First print(n2) print(n1) Will it work na.. And can pass all the test cases and also Time and space complexity will also be less.. Please correct me if am wrong...
@kaursimran191
@kaursimran191 3 жыл бұрын
Sir .u r videos r awesome 👌👌👌👌👌👌
@KingKing-px6oh
@KingKing-px6oh 4 жыл бұрын
Sir your teaching is good,,🌹🌹
@ayushjaiswal1825
@ayushjaiswal1825 3 жыл бұрын
Unbelievable it's all free.
@DrBhavaniRaoReddi
@DrBhavaniRaoReddi 3 жыл бұрын
Sir, Can you explain how the 25 output arrived here? >>> x=78 >>> y=56 >>> y=temp >>> x=y >>> temp=x >>> x 25
@lambuking
@lambuking Жыл бұрын
you rock and keep teaching
@hemanttiwary6048
@hemanttiwary6048 3 жыл бұрын
a=5 b=6 a,b=b,a after printing a=6 b=5 as output
@vinothasornavel9523
@vinothasornavel9523 4 жыл бұрын
what is the use of programming in pycharm ??? We can also type this program in python also.... then for what we are using pycharm. We can use python itself for this?? Or we have to do in pycharm
@hardeepkour4653
@hardeepkour4653 Жыл бұрын
Thank you so much sir This really helped in alot
@syangurmeet1
@syangurmeet1 4 жыл бұрын
Need to know xor in detail and how to use exactly here.
@dishanamdev2620
@dishanamdev2620 4 жыл бұрын
Sir please make a video on how ROT_TWO works.
@bramleenkaur
@bramleenkaur 5 жыл бұрын
the concept in this video was quit difficult because you did explain,,,,,, but not deeply.......
@054_ritesh3
@054_ritesh3 4 жыл бұрын
very very good
@sureshhh8082
@sureshhh8082 4 жыл бұрын
hey buddies...start working on juypter notebook...its the simplest❤..As a complete beginner i am quite comfortable with it.
@amandaahringer7466
@amandaahringer7466 2 жыл бұрын
This was super helpful, thank you!
@imtiazem
@imtiazem 3 жыл бұрын
thank you for making these videos.
@barkeeper7887
@barkeeper7887 5 жыл бұрын
lmao the Thumbnail already showed me the answer to my questin thx man
@poojamore056
@poojamore056 10 ай бұрын
I wanted explanation on how the XOR swapping works, anyways good video.
@dandesatvikreddy4424
@dandesatvikreddy4424 5 жыл бұрын
I couldn't understood exactly can u explain once more in a deep way
@msrikavya9651
@msrikavya9651 4 жыл бұрын
Rewatch 00:01
@aa6x_x
@aa6x_x 3 жыл бұрын
it's easier than you think, you can just fool the client by doing this: print('The value of a is '+str(b)) print('The value of b is '+str(a))
@anurragsingh6891
@anurragsingh6891 3 жыл бұрын
osm bro....I tried it :) So simple ;)
@rufashprince7794
@rufashprince7794 2 жыл бұрын
sir i did understand this video where did you do the coding
@swethanooka896
@swethanooka896 4 жыл бұрын
Could you plz explain about stack and quea in detail?
@adilshaikh4788
@adilshaikh4788 4 жыл бұрын
Awesome as usual
@Hmmmmm651
@Hmmmmm651 2 жыл бұрын
Thanks sir for this information🙏
@sunilkharwar5633
@sunilkharwar5633 4 жыл бұрын
keep making videos like this sir
@amanrauniyar2942
@amanrauniyar2942 3 жыл бұрын
Amazing tutorial sir,
@dipak002
@dipak002 5 жыл бұрын
Hey Navin, another great video! I just do not understand why you did not speak two lines about XOR(exclusive OR) which is like a binary operation involving three bits only for your example.
@oldokra
@oldokra 3 жыл бұрын
very much helpful, thank you.
@just_a_living_being
@just_a_living_being 6 жыл бұрын
this is also works a = a * b b = a / b a = a / b
@boredaliensclub4416
@boredaliensclub4416 5 жыл бұрын
yes but a uses 4 bits after multiply
@thorunitha7755
@thorunitha7755 5 жыл бұрын
if we use a/b we will get value in float,so a=a*b b=a//b a=a//b
@marthal3kab311
@marthal3kab311 Жыл бұрын
You are amazing🙌🙌
@prakashregmi889
@prakashregmi889 5 жыл бұрын
when you do (a,b) = (b,a), wont the value of b be updated resulting on getting the same value again? or is it working because we have applied it in same line so that the value of a swaps with b and with out updating the original value of b, a gets the original value of b. is it how its working? -_-
@TuneAndPlay
@TuneAndPlay 5 жыл бұрын
could you please cover deep copy and shallow copy with real time example
@kisantimsinacoverz9744
@kisantimsinacoverz9744 4 жыл бұрын
I enjoy a lot ..😁😁
@NarutoUzumaki-vs8hc
@NarutoUzumaki-vs8hc 3 жыл бұрын
Well explained 👏 👌
Как мы играем в игры 😂
00:20
МЯТНАЯ ФАНТА
Рет қаралды 3,4 МЛН
Spongebob ate Michael Jackson 😱 #meme #spongebob #gmod
00:14
Mr. LoLo
Рет қаралды 11 МЛН
小天使和小丑太会演了!#小丑#天使#家庭#搞笑
00:25
家庭搞笑日记
Рет қаралды 50 МЛН
Python Program to Swap Two Numbers using third variable
5:55
Example Program
Рет қаралды 16 М.
#14 Python Tutorial for Beginners | Python BitWise Operators
12:42
5 JavaScript Concepts You HAVE TO KNOW
9:38
James Q Quick
Рет қаралды 1,4 МЛН
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 175 М.
How I Would Learn Python FAST in 2024 (if I could start over)
12:19
Thu Vu data analytics
Рет қаралды 397 М.
Python Classes and Objects - OOP for Beginners
8:01
Python Simplified
Рет қаралды 557 М.
#20 Python Tutorial for Beginners | While Loop in Python
12:43
Telusko
Рет қаралды 1,6 МЛН
Как мы играем в игры 😂
00:20
МЯТНАЯ ФАНТА
Рет қаралды 3,4 МЛН