Course python for Patterns, Example Problems, Data Structures and Algorithms crash course (3 in 1 course) out now : www.udemy.com/course/python-for-patterns-problems-data-structures-algorithms/?referralCode=186515267189E391E366
@Tycomac Codes Hi I am new to your channel you were explanations pretty good I have hadn't seen like this in UA-cam Can you pls explain how to take input for List and nested list in different methods it will helpful to my studies ...
Thank you very much for your kind words, since you said it will be helpful for your studies i will definitely make a video on it, just give me some time, until then follow up other videos. 😊
Your requested video is out now, you can watch it here and the source code is available in the comments, All the best. ua-cam.com/video/QkpvoG-jUKk/v-deo.html
you have a point but how else would you add values to an empty list? I mean I could have initialized a list with [none]*length of original list and reassign the new values to that specific index, it works but it would have been a little complex approach, so I didn't take that approach, hope this helps :)
Please increase your volume and watch it at 720p for better visualization. Thanks
Course python for Patterns, Example Problems, Data Structures and Algorithms crash course (3 in 1 course)
out now : www.udemy.com/course/python-for-patterns-problems-data-structures-algorithms/?referralCode=186515267189E391E366
@Tycomac Codes
Hi I am new to your channel you were explanations pretty good I have hadn't seen like this in UA-cam
Can you pls explain how to take input for List and nested list in different methods it will helpful to my studies ...
Thank you very much for your kind words, since you said it will be helpful for your studies i will definitely make a video on it, just give me some time, until then follow up other videos. 😊
@@TycomacCodes
Thanks for your response
Your requested video is out now, you can watch it here and the source code is available in the comments, All the best.
ua-cam.com/video/QkpvoG-jUKk/v-deo.html
Hi, i have a question about the method of "without using built-in method". Personal thinking: The append() is a built - in method, isn't it?
you have a point but how else would you add values to an empty list? I mean I could have initialized a list with [none]*length of original list and reassign the new values to that specific index, it works but it would have been a little complex approach, so I didn't take that approach, hope this helps :)
Len is in built method sir
You can implement your own Len function and use it