🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges. Try Programiz PRO: bit.ly/right-python
@घटिया_कानून Жыл бұрын
100% right
@autumnleaf276810 ай бұрын
Where I can find the explanation video for the task?
@rashedzaman990 Жыл бұрын
I have been lately watching a lot of videos but Punit, he truly stands out. His teaching method is awesome. Those who are struggling to understand Decorators in Python, I will strongly recommend them to watch Punit’s video on Decorators in Python.
@saiful_khalid3 жыл бұрын
We are so lucky that these videos are free. Thank you Programiz
@घटिया_कानून Жыл бұрын
"guruji" clearest,easiest,simplest Its great asset for students to learn python
@pandathegeneral24263 жыл бұрын
Im getting better at coding because of this channel THANK YOU SO MUCH im going to push myself until i become a game dev!
@danielakoyleek37572 жыл бұрын
My guy! explicit teacher. Cheers from South Sudan❤!!!
@hadeerrashad54863 жыл бұрын
This is the BEST video I have ever watched that explained the concepts perfectly.
@kawaiikina36182 жыл бұрын
Thank you Punit and Programiz team's effort! Your videos are the best tutorials I have come across which provide clear explanation on the code structures and are sooooo easy to follow!!
@घटिया_कानून Жыл бұрын
The best
@tharuna62052 жыл бұрын
Underrated channel
@beastashwin19233 жыл бұрын
This video is really helpful, short and to the point! Thanks a lot ❤️
@duongminh1972able3 жыл бұрын
You present in a clear way. Thank you
@adeebalamat1722 жыл бұрын
I can pass my test now thanks to you
@saregamapaz3 жыл бұрын
very clear and methodical presentation...THANKS
@khaledelhoushi8834 Жыл бұрын
You can also call the length function on slicing. You can do it like this print(len(languages[0:3])).
@daviddavila8289 Жыл бұрын
12:15 Punit, why is the item “JavaScript” printed in a different color?
@ganneruvaramroshinichitti54073 жыл бұрын
thankyou sir .its really simply more explanative...
@theonlymaster93742 жыл бұрын
1. True 2. ['Hello', 'Hi', 'java', True] Traceback (most recent call last): File "", line 7, in TypeError: 'tuple' object does not support item assignment >
@edselnarvaez96672 жыл бұрын
Punit you are the best thanks a lot !
@kiran123143 жыл бұрын
Classes are very easy to understand
@Knochenkotzer012 жыл бұрын
Super great content Programiz, keep it up ✨
@DigitalAcademyOnline3 жыл бұрын
Learning Python is something you would like to get in your skills, but you do not know where to start? This NEW channel will help you out leaning Python Programming from scratch - for complete Beginners, Intermediate and Advanced Levels
@AbdulrahmanMuttakaJunju Жыл бұрын
really interesting videos. however am having challenge solving a problem related to tuple, can you be of help?
@SANGITA_SINGH19813 жыл бұрын
Your videos are really very great
@sg8581 Жыл бұрын
Great videos, thanks a ton!
@EmereEmmanuel2 ай бұрын
My answer, hope i am doing well. 1. ["True"] 2. ["Hello", "Hi", "Java", "True"] 3. [1, 100, 4, 5]
@OptimusPrime-vy8vy4 жыл бұрын
This is really well done thank you!
@BalaKrishnan-qk2zu3 жыл бұрын
This video is really helpful. Thanks a lot
@stefmyt50623 жыл бұрын
Amazing video, sir! Very useful!
@srhrithik52592 жыл бұрын
Thank you programiz
@saurav24093 жыл бұрын
Thank u so, to this precised n to the point lecture ... 🥺
you can not change the elements of a tuple .hence this is the output mixed_list=['Hello',-34,'Java',True] mixed_list[1]='Hi' print('2.',mixed_list) print('1.',mixed_list[-1]) mixed_tuple=(1,3,4,5) mixed_tuple[1]=100 print('3.',mixed_tuple)
@mohammedumair29684 жыл бұрын
Good explanation sir 👏ossom Sir please make videos on *Data structure* sir please....
hi, is it possible using .insert() on list, we treat list or tuple we want to add as like .extend() treats ?
@shankarsai20674 жыл бұрын
Why don't we have a live interaction session with Punit sir????
@motivationda20672 жыл бұрын
Punit raj kumar 🤧
@gabrielladangler17224 жыл бұрын
Awesome videos! Looking forward to the next one! :)
@ohjinyoung49312 жыл бұрын
Very good!
@ensonev87683 жыл бұрын
Awesome. Keep going
@adityagupta89502 жыл бұрын
sir if we want to change 2nd and last element of list at once then what we will use?.I tried this but its results in reducing of size of list.the immediate element after the first index value is only there and rest of the elements in list is removed.
@lukedsouza74 жыл бұрын
Thanks Great Job!
@kyrank.43213 жыл бұрын
Great videos, keep it up!!!
@ahmedyousif47824 жыл бұрын
why the sound changed?
@abdulquadiransari74764 жыл бұрын
hey why the website went down . Why I am I unable to load the website?
@rayar23234 жыл бұрын
The website is up and running now
@jitendrakasaudhan4 жыл бұрын
I really like all your video tutorials :) its simple , clean and clear :) BTW which tool do you use to edit/create these videos ? it looks great !! :) 👍
@majidalich29472 жыл бұрын
1. True 2. ['Hello', ' Hi', 'Java' , 'True' ] error : you cant use assignment operator in case of tuples 3. (1,3,4,5)
@GiulioVonKerman3 жыл бұрын
How can I change the position of an item in a list?
@nithyanagendran56613 жыл бұрын
Hello Sir, am having a doubt. I tried the following code . languages = ["Python","Java","Kotlin","C++"] languages[1:4] = ["Ruby","JS"] print(languages) and the result i got is : ------------------------------------- ['Python', 'Ruby', 'JS'] Why Kotlin didn't get printed ? what is wrong in this ?
@tizestaxd3 жыл бұрын
because you wrote 1:4 it should be 1:3 look languages = ["Python","Java","Kotlin","C++"] languages[1:3] = ["Ruby","JS"] print(languages) result ['Python', 'Ruby', 'JS', 'C++'] I hope i helped u have a good day
@harish00004 жыл бұрын
Please also alow us to save our code in python compiler which is on your site
@Trazynn4 жыл бұрын
I understand that tuples are faster and make more efficient use of memory. But is that their only purpose? They do seem to require a lot more effort than just using a list.
@programizstudios4 жыл бұрын
No, efficiency is not the primary reason to use tuples. In fact, the difference in efficiency is insignificant for 99.9% of the applications. The primary benefit of using tuples is that it helps us create less error-prone code. For example, Imagine you own an ecommerce site and you need to send emails to all the users regarding a new policy change. To do so, you decided to store all the emails (from the database) in a collection so that you can send the emails at once. In such cases, it's better to use tuples because we know for sure that these emails won't change throughout the execution of the program. And if the tuple is accidentally modified by you or other developers, we get an error (which is a good thing). This helps us create less buggy code. Also, using a tuple makes our code more readable. It's because when we see a tuple we know for sure that this data cannot be modified.
@mateenbutt31803 жыл бұрын
Why output are same? when I use .copy() method............. old_list = [[1, 2, 3], [4, 5, 6], [7, 8, 'a']] new_list = old_list.copy() old_list[2][2] = 10 print('Old List:', old_list) print('New List:', new_list) Output: Old List: [[1, 2, 3], [4, 5, 6], [7, 8, 10]] New List: [[1, 2, 3], [4, 5, 6], [7, 8, 10]]
@AryanSingh-ju6wn3 жыл бұрын
with .copy() it must not be creating a new memory location but rather linking the previous one to the new variable
@cadribopraiseoyo56363 жыл бұрын
Instructor what's your name? I like your tutorials a lot.
@mohammadabdullahaalforhad13752 жыл бұрын
Thanks
@favourudoh7533 жыл бұрын
amazing!!
@saravanaakavi23763 жыл бұрын
will you make a video as per viewer request?
@sureshvarthya22502 жыл бұрын
True ["Hello", "Hi", "Java", True] error it does not support for reassigning values into the tuple ,because it is immutable
@ahmedaltaf121314 жыл бұрын
thank you so much omg
@harshad92032 жыл бұрын
1. 4 2. hello, hi, java, true 3. error
@praveenasurya32112 жыл бұрын
can you add subtitles too sir?
@shadoestorme4 жыл бұрын
thank you!
@kushal-shaw-pvt4 жыл бұрын
Sir please teach tkinter
@ranjeet58063 жыл бұрын
Answer of the Exercise : 1.True 2.Hello---- edit: it prints the whole list a error that you cant use assignment operator in case of tuples 3.1---- edit: it prints the whole tuple
@sunnyraut32433 жыл бұрын
1.True 2.Hello Hii Java True 3.Error cannot assign value to tuple
@datasciencetoday71279 ай бұрын
@kemaketseforkssebitiela30895 ай бұрын
❤i think i am going somewhere😅
@karanbirsingh59243 жыл бұрын
Lets we have 3 reviewers and 4 movies......how to code this
@emrandafadar44452 жыл бұрын
Your explaining style is very hard to understand You speak too fast You're writing your codes too fast And supporting logics aren't many And your coding font size is very small I am fully beginner, I can't catch it fast like others