#33 Python Tutorial for Beginners | Function Arguments in Python

  Рет қаралды 639,222

Telusko

Telusko

6 жыл бұрын

Check out our courses:
Spring and Microservices Weekend Live Batch : bit.ly/spring-live-weekend
Coupon: TELUSKO10 (10% Discount)
Master Java Spring Development : bit.ly/java-spring-cloud
For More Queries WhatsApp or Call on : +919008963671
website : courses.telusko.com/
Instagram : / navinreddyofficial
Linkedin : / navinreddy20
TELUSKO Android App : bit.ly/TeluskoApp
Discord : / discord
In this lecture we are discussing :
all variables are actually references to objects in memory. Thus, when a function is called with a parameter, the reference to the object is passed by value.
For immutable data types like integers, floats, and strings, changes made to the parameter inside the function do not affect the original value of the parameter outside the function. This is because any changes made to the parameter create a new object in memory, and the original reference to the object remains unchanged.
For mutable data types like lists and dictionaries, changes made to the parameter inside the function do affect the original value of the parameter outside the function. This is because the reference to the object remains the same, but the contents of the object can be modified.
def update(lst):
print(id(lst))
lst[1]=25
print(id(lst))
print("x",lst)
lst = [10,20,30]
print(id(lst))
update(lst)
print(lst)
The above code defines a Python function called update that takes a list lst as a parameter. The function first prints the memory address of the list using the id() function. It then modifies the second element of the list by assigning it the value 25. The function then prints the new memory address of the list and the updated list.
The code then creates a list called lst with the values [10, 20, 30] and prints its memory address using the id() function. The update function is then called with the lst parameter. Since lists are mutable objects in Python, the memory address of the list is passed to the function, making it a pass by reference.
Inside the update function, the second element of the list is modified to 25. Since lists are mutable objects and the memory address of the original list is passed to the function, this change affects the original list outside the function. The new memory address and the updated list are printed inside the function.
Python Tutorial to learn Python programming with examples
Complete Python Tutorial for Beginners Playlist : • #1 Python Tutorial for...
Python Tutorial in Hindi : • #1 Python Tutorial | I...
Github :- github.com/navinreddy20/Python-
Java and Spring Framework For beginners with Spring Boot : - bit.ly/3LDMj8D
Java Tutorial for Beginners (2023) :- bit.ly/3yARVbN
Editing Monitors :
amzn.to/2RfKWgL
amzn.to/2Q665JW
amzn.to/2OUP21a.
Subscribe to our other channel:
Navin Reddy : kzfaq.info/love/xmk...
Telusko Hindi :
kzfaq.info/love/itz...
Donation:
PayPal Id : navinreddy20
Patreon : navinreddy20
www.telusko.com/contactus

Пікірлер: 336
@KoreaRwkz
@KoreaRwkz 4 жыл бұрын
Pass by value: (creation of another container with the same value ---> now we have 2 containers with the same value ----> they are independent of each other, changing the value inside one container does not change the value inside the other container) Value is passed, resulting in 2 separate locations in the memory storing the same value. Therefore, a change in the 'copied' value will not affect the original value because they are inhabiting separate memory locations. Pass by reference: (there is no creation of a new container, this is just aliasing) Pointing the function to the memory location of the data/value you are passing. In other words, no copying of values are actually taking place. So there really is only one memory location storing one value. This is basically aliasing. So a change in one of the aliases will obviously affect the value of the other aliases because they are the same thing. In Python: When you pass a variable with its value into a function, if its value is not changed by the function, reference (physical location / address on memory) is not changed. So at this point, there is no creation of a new memory (container). But as soon as the function changes the value of the argument, a new memory is created, so now you have 2 containers holding different values. But this is only for immutable (cannot be mutated/modified/changed) datatypes like integers and strings. But if you pass in a mutable datatype like a list into the function and change its value, since it is mutable, the data can be updated/changed in-situ (without the creation of a new memory). This results in still just one memory location, but with an updated value stored in it.
@user-yy5rf3ly7b
@user-yy5rf3ly7b 2 жыл бұрын
This was very helpful. I appreciate your efforts. Many thanks!.
@GULLAPUDILIKITHBCE
@GULLAPUDILIKITHBCE 2 жыл бұрын
and one more thing is immutable can't change their address so they just create another variable at that address(if something changed), whereas mutables like list can change so they don't change their ids and exist at same id
@sanjeevKumar-eg6hp
@sanjeevKumar-eg6hp 2 жыл бұрын
@Brandon Lim Thank you for this quick updated explaination
@shammishriyan
@shammishriyan 2 жыл бұрын
thanks a lottt brother
@Fusion-is-future
@Fusion-is-future Жыл бұрын
This was very helpful. Thank you so much
@avanias8000
@avanias8000 3 жыл бұрын
The simple concept is integers are immutable so we can't change or update orginal value(the value stored before update).List is mutable so we can update the original value
@premstein16
@premstein16 5 жыл бұрын
Hi, the very first video which I couldn't follow. Could you please explain this concept once again with another example.
@immanuelmathari4862
@immanuelmathari4862 4 жыл бұрын
same here hahaha
@dishantkumbhar8822
@dishantkumbhar8822 4 жыл бұрын
Sir we need a separate video on pass by value and pass by reference, as we didn't understood the concept .
@jyoshnadeepala4439
@jyoshnadeepala4439 2 жыл бұрын
u dont need to ,coz they dont work for python. he was just comparing python with other languages to make the difference clear & who ever know other languages can relate the difference quite well.. 😅
@diszJAI
@diszJAI 5 жыл бұрын
Just to clear the confusion: In the first example, value of 'a' did not get updated because the types int and string are immutable. In the 2nd example, sir used LIST which is mutable, therefore the values outside the function also got changed.
@eshaalakshmids
@eshaalakshmids 2 жыл бұрын
thanks for clarifying
@aagat1234
@aagat1234 Жыл бұрын
Thank You.
@hemajeyalakshmi9106
@hemajeyalakshmi9106 3 жыл бұрын
oh god!!! as the array comes, i started watching every video the second time .
@solanki7234
@solanki7234 2 жыл бұрын
I too.
@solanki7234
@solanki7234 2 жыл бұрын
😂😂
@pranavjambare9327
@pranavjambare9327 5 жыл бұрын
Need more explanation, Can you make new video on same thing? & yes watching series from long, it's amazing :)
@Notyouranalyst
@Notyouranalyst 3 жыл бұрын
He is the exact senior developer, we see in the memes..... Thank you navin ✌️
@sonampandey7278
@sonampandey7278 2 жыл бұрын
Thank you Navin Sir, i have gone through many sites but your tutorial is really outstanding....
@notknown6643
@notknown6643 Жыл бұрын
Sir ,as a beginner i'm not able to understand only this video , plz do something about it Btw love your series
@nareshkollipora5323
@nareshkollipora5323 5 жыл бұрын
you miss the clarity sir!
@rajeshsagar3912
@rajeshsagar3912 3 жыл бұрын
Me too felt the same
@divyamsinha3935
@divyamsinha3935 3 жыл бұрын
its sad
@avanias8000
@avanias8000 3 жыл бұрын
The simple concept is integers are immutable so we can't change or update orginal value(the value stored before update).List is mutable so we can update the original value
@aninditapaul1251
@aninditapaul1251 3 жыл бұрын
Yes sir, kuch samajh nahi aaya
@mr.curious1714
@mr.curious1714 3 жыл бұрын
The best video . got all my doubts about arguments in functions in python . and in just 8 minutes .!
@sumantakumardutta986
@sumantakumardutta986 3 жыл бұрын
This series is very much helpful for students like me, who is switching from Java to Python. Thanks Navin sir.😀
@b.sasikumar2141
@b.sasikumar2141 4 жыл бұрын
I'm Immensly Addicted to ur teaching videos sir thank for teaching us.....
@user-jc6te1vm8v
@user-jc6te1vm8v 2 жыл бұрын
for the 1st time, could not understand the lecture at all sir....
@rohanram7197
@rohanram7197 5 жыл бұрын
Sir , not able to understand this . Could you please explain theses concepts again I’m a big fan of you’re previous videos 🙏🏻
@shrabantitalkmovies6647
@shrabantitalkmovies6647 4 жыл бұрын
me too really
@ArtiSharma-qy1ho
@ArtiSharma-qy1ho 2 жыл бұрын
The way you teach.. really amazing.. Thank you sir
@fa7234
@fa7234 Жыл бұрын
mutable variables (integers and strings): passed by value, new memory location created immutable variables (lists): passed by reference, original variable updated at the same location
@geethapakala1941
@geethapakala1941 5 жыл бұрын
Sir, you are teaching the concepts very easily
@yanhairen7293
@yanhairen7293 2 жыл бұрын
Really solved my confusion, a new python learner
@vasu7031
@vasu7031 6 жыл бұрын
can't able to understand the concept..just give brief example..
@sapehianitin
@sapehianitin 5 жыл бұрын
In Python, we don't have the concept of 'pass by value' or 'pass by reference'. Instead, we have mutable and immutable arguments passed to the function. Integer and strings are immutable, hence when they are passed as argument a new memory address is initialized (@ x=8) and original value of a isn't updated. However, list is mutable object and when it's value is updated in update function original list is also updated. So there is no change in memory address of list lst.
@hamzanaeem4838
@hamzanaeem4838 5 жыл бұрын
@@sapehianitin Can you plz tell me that why we do nt use loops to print array elements and how it is working without loops ,,,means this does not work in java or c++ without using loop
@sapehianitin
@sapehianitin 5 жыл бұрын
@@hamzanaeem4838 I'm not able to understand your query. Please be more specific with an example of your choice
@abhijitsahoo9492
@abhijitsahoo9492 4 жыл бұрын
sir I m very much impresed by your teaching. I have also learned the concept of blockchain from you . I want the video tutorials of the mascot u have made for you that is appearing in videos.
@saifsiddiqui8017
@saifsiddiqui8017 3 жыл бұрын
Following your python series this was the first lecture vedio that i couldn't understand
@sanjeevKumar-eg6hp
@sanjeevKumar-eg6hp 2 жыл бұрын
Thank you so much for making this video i was breaking my head over this as in case of immutable variables everytime a change happens python will create a new memory but for mutable variables it uses the same memory so if see the list before and after the calling the function both will have the same value.
@subho3651
@subho3651 6 жыл бұрын
One of the best series on Python
@divyabunny7457
@divyabunny7457 4 жыл бұрын
Thank you sooooo much bro for the tutorial this is very Understandable and useful 😇
@vakhariyajay2224
@vakhariyajay2224 2 жыл бұрын
Thank you very much. You are a genius.
@prashantdarade9327
@prashantdarade9327 4 жыл бұрын
I'm from non IT field, till video 32 i understand all concept but in this video not getting any concept clearly and easy, so can you please explain simple way
@AtharvP07
@AtharvP07 3 жыл бұрын
so True. the same thing happened to me. I think from 33 or so onwards, he kind of skipped to explain a few basic things. So, as a fresh beginner from a non-IT field, it's difficult to grasp some things especially since the 2nd half of the last video.
@AmanAliJB
@AmanAliJB 3 жыл бұрын
In Python, we don't have the concept of 'pass by value' or 'pass by reference'. Instead, we have immutable or mutable arguments passed to the function. If we pass immutable objects like integer or string to function and try to update their value, their original value will not be updated instead a new variable will be created with updated value at new memory address. If we pass mutable objects like list or dictionary and try to update them, their original value will be updated at the same memory address
@AmanAliJB
@AmanAliJB 3 жыл бұрын
@@AtharvP07 In Python, we don't have the concept of 'pass by value' or 'pass by reference'. Instead, we have immutable or mutable arguments passed to the function. If we pass immutable objects like integer or string to function and try to update their value, their original value will not be updated instead a new variable will be created with updated value at new memory address. If we pass mutable objects like list or dictionary and try to update them, their original value will be updated at the same memory address
@icodetoomuch
@icodetoomuch 5 жыл бұрын
Great tutorial.Could you please make a tutorial about Stack and Heap,if you haven't?
@desiboy1020
@desiboy1020 Жыл бұрын
After watching 5 to 6 times I finally understand it 🙏
@rajkamalsharma5167
@rajkamalsharma5167 5 жыл бұрын
Very knowledgeable. Sir, please make a video to connect Oracle or any database and executive DML functions or any query.
@snehajitchandra2976
@snehajitchandra2976 6 жыл бұрын
Really nice video sir!!!!!
@sumitpanda2466
@sumitpanda2466 4 жыл бұрын
As i saw these from a website 'All parameters (arguments) in the Python language are passed by reference. It means if you change what a parameter refers to within a function, the change also reflects back in the calling function.'(Can you please explain this?) And provide a good show for the debugging steps and the execution flow when you are printing the id of 'a' and 'x'?
@roopagowda9271
@roopagowda9271 2 жыл бұрын
Sir, In the scenario of list, original values got changed, should we create a copy of the list in the function always in order to prevent overriding or original values ?
@NitinJainNoida
@NitinJainNoida 5 жыл бұрын
this is the first video of yours which I did not understand...no probs, i will keep it in my vault
@aanchalsharma2749
@aanchalsharma2749 3 жыл бұрын
Wonderfully explained
@jahnvipandey1111
@jahnvipandey1111 2 жыл бұрын
Lots of love and respect sir !❤
@armeenhossain665
@armeenhossain665 5 жыл бұрын
Hi sir? Can u explain pass by reference and pass by value again , in the next video? Please 😶😶
@tempmail5655
@tempmail5655 4 жыл бұрын
*reffered from top comments* In Python, we don't have the concept of 'pass by value' or 'pass by reference'. Instead, we have immutable or mutable arguments passed to the function. If we pass immutable objects like integer or string to function and try to update their value, their original value will not be updated instead a new variable will be created with updated value at new memory address. If we pass mutable objects like list or dictionary and try to update them, their original value will be updated at the same memory address. Below are the sample programs. ---------------------------------------------------------- Immutable object as argument - Integer ---------------------------------------------------------- def update(x): print('Value of x ',x) print('Memory Address of x before update',id(x)) x=8 print('Value of x after update',x) print('Memory Address of x after update',id(x)) a=10 print('Value of a ',a) print('Memory Address of a before update',id(a)) update(a) print('Value of a ',a) print('Memory Address of a before update',id(a)) ---------------------------------------------------------- Mutable object as argument - List ---------------------------------------------------------- def update(x): print('inside function, before update',spam) print('Memory address of list inside function, before update',id(spam)) spam[1]=-3 print('inside function, after update',spam) print('Memory address of list inside function, after update',id(spam)) spam=[1,2,3] print('Items in list',spam) print('Memory address of list',id(spam)) update(spam) print('Items in updated list',spam) print('Memory Address of updated list',id(spam))
@redouanehemi9693
@redouanehemi9693 4 жыл бұрын
@@tempmail5655 thank you sir
@zox45
@zox45 4 жыл бұрын
Yeah please. Short-circuiting in my brain.
@ashwinnair9862
@ashwinnair9862 3 жыл бұрын
@@tempmail5655 Thank you for this!
@jyoshnadeepala4439
@jyoshnadeepala4439 2 жыл бұрын
@@tempmail5655 world needs people like you 😉
@RahulKumar-in8ph
@RahulKumar-in8ph 5 жыл бұрын
My understanding is, the address of x and a was still same because we have print the id of x before updating the value of x that means at that time x and a both were 10. But the moment we update the value of x as 8 the address of x gets changed. Please let me know if my understanding is correct and is there any name for this concept here? As you mentioned we don't have pass by value or pass by reference concept in Python.
@prashanthpanuganti5336
@prashanthpanuganti5336 6 жыл бұрын
Thank you Soo much Sir for doing this series... #Telusukuntunanu 1 view
@krishj8011
@krishj8011 4 жыл бұрын
thanks...very useful....
@sharvitiwari6948
@sharvitiwari6948 4 жыл бұрын
Sir u are reallly amazing 💓💓💓🤩🤩🤩
@vivekmaurya3026
@vivekmaurya3026 6 жыл бұрын
Good job sir very very thanks
@Gentlistic
@Gentlistic 2 жыл бұрын
Sir, I've seen 32lectures before this, but I m totally confused with this one.
@standman007
@standman007 5 жыл бұрын
This was just outstanding. And an important video. A perfect reference material in 8 minutes
@sukshithshetty4847
@sukshithshetty4847 6 жыл бұрын
Why is it updating the original list ?? Like what should i do if i want to print the old list(directly) and the updated list (through function)??
@sauravpandey900
@sauravpandey900 4 жыл бұрын
sir can i say that if we are passing a mutable argument then it will be like pass by refrence?
@saurabhbehere5435
@saurabhbehere5435 4 жыл бұрын
debug surely helps understand this concept. & if your experimenting then this video gonna raise lot of questions than answers :D but very interesting.
@mirmeraj5703
@mirmeraj5703 5 жыл бұрын
It's super cool video.
@vimalsanathan7146
@vimalsanathan7146 5 жыл бұрын
sir can I know about dictionaries in python programming .
@StrikingCommoner
@StrikingCommoner 2 жыл бұрын
Hi Navin, though I love most other videos for python and would recommend others to learn from you. But am so sorry to let you know that I did not understand anything in this video tutorial. Thanks anyway. Keep sharing, keep growing
@simrankaur-yu6rh
@simrankaur-yu6rh 3 жыл бұрын
Good sir first of all u all should read about pass by value and pass by reference and then u should watch this video i m sure u will get the all stuff 👍☺️☺️☺️
@mrrishiraj88
@mrrishiraj88 5 жыл бұрын
great! thanks
@vinodhkumar2156
@vinodhkumar2156 3 жыл бұрын
Thank you !!
@suprithasathish5435
@suprithasathish5435 4 жыл бұрын
Sir, can you please post another video on this with brief explanation...
@hallo-xp2wh
@hallo-xp2wh 2 жыл бұрын
what i understood is int and string are immutable, there value is passed only in defined function and not to the whole following code. while list and dictionary pass the updated value to the following code out of user defined function
@eswarreddy1003
@eswarreddy1003 4 жыл бұрын
Sir, I cannot understand why the output of both the prints is same even though we are changing the element 1 in list in update(list) . Please kindly reply my comment
@sreecharan4300
@sreecharan4300 5 жыл бұрын
sir in case of lst it is acting as pass by reference right(changes made in x are being reflected in a) so i'm not really clear in this concept can anyone explain..??
@pankajjadhav7494
@pankajjadhav7494 4 жыл бұрын
i do like the videos and i would like to have source codes thats shown in your video for pratice purpose can you helpme out .
@ganeshmane
@ganeshmane 4 жыл бұрын
Thank you
@rajeevsinghrajput6752
@rajeevsinghrajput6752 5 жыл бұрын
thanks sir
@sreerammeka9238
@sreerammeka9238 4 жыл бұрын
What is the memory address of elements in a list? Why is it printing only one memory address for multiple elements in a list? How does the elements in a list gets stored in memory? Does it store the element at index 0 at the printed location, and element at index 1 at memory[0]+1 something like that?
@vardhanm5496
@vardhanm5496 4 жыл бұрын
The whole series is Awesome...And i am glad that i am getting this free
@namratasurve6708
@namratasurve6708 5 жыл бұрын
this video was very conceptual and one should better understand this basic concept
@manoharsagunthalla9215
@manoharsagunthalla9215 3 жыл бұрын
If you give with any practical example that would be more helpful. I have price of commodities, after few days the price has change on review I need to see both prices how to do that?
@paritoshkumar9062
@paritoshkumar9062 3 жыл бұрын
Sir can u explain why u mentioned that integer and Strings are immutable ?
@aaira4290
@aaira4290 6 жыл бұрын
wht u used for editing video? Please let me know.
@atharvaborikar6125
@atharvaborikar6125 3 жыл бұрын
this video was totally above my head....u totally confused me 😵😵
@donatellodonini6828
@donatellodonini6828 3 жыл бұрын
but, what if i want to pass a mutable object into a function, than store the output of the function in a variable and than I need to reuse the initial value of the mutable object but i can not because it's been changed? how can i get around that?
@sriman8083
@sriman8083 6 жыл бұрын
Super sir
@sivakumar-mu3wj
@sivakumar-mu3wj 5 жыл бұрын
#Basically i think if the individual item in a list is modified, it's change will reflect in the complete list def func_test(var_a): print("InFunc-B4-Changes Value is ",var_a) print("InFunc-B4-Changes Addr is ",id(var_a)) print("InFunc-B4-Changes Addr of indexes is", id(var_a[0]), id(var_a[1]), id(var_a[2])) var_a[0]=10 var_a[1]= 20 var_a[2]=30 print("The index change in var_a to",var_a[0],var_a[1],var_a[2]) print("InFunc-Aftr-Changes Value is ",var_a[0],var_a[1],var_a[2]) print("InFunc-Aftr-Changes Addr is ",id(var_a)) print("InFunc-Aftr-Changes Addr of indexes is",id(var_a[0]),id(var_a[1]),id(var_a[2])) var_a= [1,2,3] print("var_a value B4 Func call is", var_a) print("var_a Addr B4 Func call is", id(var_a)) print("I Addr of indexes is ", id(var_a[0]), id(var_a[1]), id(var_a[2])) func_test(var_a) print("var_a value Aftr Func call is", var_a) print("var_a Addr Aftr Func call is", id(var_a)) print("var_a Addr of indexes is ", id(var_a[0]), id(var_a[1]), id(var_a[2]))
@abhishek_kr_8635
@abhishek_kr_8635 3 жыл бұрын
Yeah enjoy 👍
@apoorvshandilya4929
@apoorvshandilya4929 3 жыл бұрын
if you make an another video over this topic then please share the link
@techyshivang2634
@techyshivang2634 6 жыл бұрын
Nice sir
@dineshkumar-je2mw
@dineshkumar-je2mw 4 жыл бұрын
others said in integer python work as pass by value list python work as pass by reference that's wrong sir. you are correct sir. integer is immutable because it does't change the value but list is mutable so it change the value Thank you sir
@juhiaggarwal908
@juhiaggarwal908 5 жыл бұрын
Unable to make out that since the value of x is 8 and still it is pointing 10. How?
@JatinKumarJKM
@JatinKumarJKM 3 жыл бұрын
@Navin sir, can u please explain this concept in a new video, slightly confused here
@rohitdkashyap407
@rohitdkashyap407 2 жыл бұрын
Please add a video for this. This concept was a bit confusing.
@MrHmm-cv6gs
@MrHmm-cv6gs 4 жыл бұрын
let me put it in simple way if two variable holding same value, then there address would be same, that's how python save memory, in others languages , two variables with same value will hold two different memories. hence waste of memory.
@aimenbaig6201
@aimenbaig6201 4 жыл бұрын
Thank youu
@ruhaandevtyagi5383
@ruhaandevtyagi5383 5 жыл бұрын
Well explained, however, my question is: How would we create a function to update the value of an integer? (If it is at all possible?)
@avert_
@avert_ 5 жыл бұрын
i cant get what ur trying to ask..but tell if i got it correct! def update(x): x = 3 print(x) y = int(input()) update(y) ...!user will input a value and the code will automatically gives the output '3'...
@ruhaandevtyagi5383
@ruhaandevtyagi5383 5 жыл бұрын
@@avert_ I don't think that is correct. What you are doing in your code is inputting a certain integer, which isn't required as a parameter for the update function you have created. Think about this, if you simply called update(without passing y), what would happen?
@keshavashukla
@keshavashukla 4 жыл бұрын
make the function return the value and accept it in the same variable that you pass to the function. like y = update(y)
@pradeepkumar4393
@pradeepkumar4393 4 жыл бұрын
@@avert_ In my opinion, @ruhaan tyagi wants to know how to update value of int variable (which is immutable) by using user defined function
@rahulvaswani8866
@rahulvaswani8866 5 жыл бұрын
Can you please explain us again Although the series is amazing but I didn't understand this concept
@kisanmanila9317
@kisanmanila9317 4 жыл бұрын
Hi Naveen, I believe, I did not get . I will go through again and again. But seems it need some more explanation along with more examples.
@maneeshdhauni
@maneeshdhauni 5 жыл бұрын
thanks
@prathameshsatyarthi5552
@prathameshsatyarthi5552 4 жыл бұрын
if interviewer ask me if we not use pass by value nor reference in python then what you use? Then in that case what should be my answer
@saurabhnegi4977
@saurabhnegi4977 4 жыл бұрын
Sir i am not able to understand this concept. Big fan of yours
@varshanurs7051
@varshanurs7051 5 жыл бұрын
sir i am confused that when we did the first example of passing a int x, when we did x=8 the address changed but when we did lst[1] the address didnot change though the value changes from the initial list ca u explain t in a detailed way sir
@TheGeneralCase
@TheGeneralCase 5 жыл бұрын
Apparently the int type is "immutable" whereas the list type is "mutable " .
@routine_engineering
@routine_engineering 5 жыл бұрын
Dint understand the concept why lst was updated
@skr8375
@skr8375 4 жыл бұрын
How take input from user in 2D array
@surendrabarsode8959
@surendrabarsode8959 Жыл бұрын
Amazing video.. only hope those who watched understood what is being talked about!! God save the Gen Z or whatever if this is how concepts are taught! Thanks Brandon Lim for his comments below for clarity.
@srameswari2185
@srameswari2185 5 жыл бұрын
I dont understand this concept . Sir please explain it again
@gyanendrapandey8451
@gyanendrapandey8451 6 жыл бұрын
Is there any main method in python or not
@lakshmitejaswi7832
@lakshmitejaswi7832 5 жыл бұрын
make a video on decarators .pls
@avinashmurthy5574
@avinashmurthy5574 4 жыл бұрын
Can u explain this concept again...
@TheTechnicalman
@TheTechnicalman 5 жыл бұрын
7:30 immutable or mutable.
@phantom008varun4
@phantom008varun4 Жыл бұрын
i could not catch this concept much how were the values affected and changed
@tokay6467
@tokay6467 4 жыл бұрын
ALMOST AT 1M
@mryueen3744
@mryueen3744 4 жыл бұрын
Difference between return and priny
@firdhoussajan6401
@firdhoussajan6401 8 ай бұрын
As I am new to Python programming language. I really like the way of your training. But my friend told me that the code changes for every version of Python. Is it okay to learn the content you have given in these videos because it is uploaded before 4 years?
@vishalgoyal5596
@vishalgoyal5596 6 жыл бұрын
i am new to programming my problem is logic .what should i do to improve my logic ? please reply
@blasttrash
@blasttrash 6 жыл бұрын
solve problems from hackerrank or hackerearth or leetcode etc.
Please Master These 10 Python Functions…
22:17
Tech With Tim
Рет қаралды 114 М.
Идеально повторил? Хотите вторую часть?
00:13
⚡️КАН АНДРЕЙ⚡️
Рет қаралды 9 МЛН
ПРОВЕРИЛ АРБУЗЫ #shorts
00:34
Паша Осадчий
Рет қаралды 7 МЛН
25 Nooby Pandas Coding Mistakes You Should NEVER make.
11:30
Rob Mulla
Рет қаралды 265 М.
Solve any Star Pattern program in Python
18:44
Simply Coding
Рет қаралды 905 М.
#49 Python Tutorial for Beginners | Class and Object
11:01
Telusko
Рет қаралды 816 М.
#32 Python Tutorial for Beginners | Functions in Python
11:13
Telusko
Рет қаралды 1 МЛН
Functions in Python are easy 📞
10:38
Bro Code
Рет қаралды 435 М.
Java Strings are Immutable - Here's What That Actually Means
7:06
Coding with John
Рет қаралды 609 М.
#20 Python Tutorial for Beginners | While Loop in Python
12:43
Telusko
Рет қаралды 1,6 МЛН
Это - iPhone 16!
16:29
Rozetked
Рет қаралды 430 М.
Частая ошибка геймеров? 😐 Dareu A710X
1:00
Вэйми
Рет қаралды 5 МЛН
Запрещенный Гаджет для Авто с aliexpress 2
0:50
Тимур Сидельников
Рет қаралды 1,1 МЛН
Какой ноутбук взять для учёбы? #msi #rtx4090 #laptop #юмор #игровой #apple #shorts
0:18