🔥 Learn Python with a more hands-on experience with Programiz PRO-interactive lessons, quizzes & challenges. Try Programiz PRO: bit.ly/right-python
@घटिया_कानून Жыл бұрын
100% right
@autumnleaf276811 ай бұрын
Where I can find the explanation video for the task?
@saiful_khalid3 жыл бұрын
We are so lucky that these videos are free. Thank you Programiz
@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.
@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!
@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
@hadeerrashad54863 жыл бұрын
This is the BEST video I have ever watched that explained the concepts perfectly.
@danielakoyleek37572 жыл бұрын
My guy! explicit teacher. Cheers from South Sudan❤!!!
@घटिया_कानून Жыл бұрын
"guruji" clearest,easiest,simplest Its great asset for students to learn python
@beastashwin19234 жыл бұрын
This video is really helpful, short and to the point! Thanks a lot ❤️
@tharuna62053 жыл бұрын
Underrated channel
@duongminh1972able3 жыл бұрын
You present in a clear way. Thank you
@Knochenkotzer012 жыл бұрын
Super great content Programiz, keep it up ✨
@saregamapaz3 жыл бұрын
very clear and methodical presentation...THANKS
@daviddavila82892 жыл бұрын
12:15 Punit, why is the item “JavaScript” printed in a different color?
@ganneruvaramroshinichitti54073 жыл бұрын
thankyou sir .its really simply more explanative...
@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 !! :) 👍
@stefmyt50623 жыл бұрын
Amazing video, sir! Very useful!
@adeebalamat1722 жыл бұрын
I can pass my test now thanks to you
@sg85812 жыл бұрын
Great videos, thanks a ton!
@khaledelhoushi8834 Жыл бұрын
You can also call the length function on slicing. You can do it like this print(len(languages[0:3])).
@edselnarvaez96672 жыл бұрын
Punit you are the best thanks a lot !
@AbdulrahmanMuttakaJunju Жыл бұрын
really interesting videos. however am having challenge solving a problem related to tuple, can you be of help?
@SANGITA_SINGH19814 жыл бұрын
Your videos are really very great
@OptimusPrime-vy8vy4 жыл бұрын
This is really well done thank you!
@BalaKrishnan-qk2zu3 жыл бұрын
This video is really helpful. Thanks a lot
@saurav24093 жыл бұрын
Thank u so, to this precised n to the point lecture ... 🥺
@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.
@westonholmes95032 жыл бұрын
These videos are great
@georg1014 жыл бұрын
I am waiting for more!
@kiran123143 жыл бұрын
Classes are very easy to understand
@nriezedichisom16764 жыл бұрын
Videos are perfect
@mohammedumair29684 жыл бұрын
Good explanation sir 👏ossom Sir please make videos on *Data structure* sir please....
@jeetkanse98553 жыл бұрын
Walla habibi
@kyrank.43213 жыл бұрын
Great videos, keep it up!!!
@ohjinyoung49312 жыл бұрын
Very good!
@srhrithik52592 жыл бұрын
Thank you programiz
@mateenbutt31803 жыл бұрын
hi, is it possible using .insert() on list, we treat list or tuple we want to add as like .extend() treats ?
@kapibara2440 Жыл бұрын
Super video, thank you❤
@ensonev87683 жыл бұрын
Awesome. Keep going
@ahmedyousif47824 жыл бұрын
why the sound changed?
@gabrielladangler17224 жыл бұрын
Awesome videos! Looking forward to the next one! :)
@srhrithik52592 жыл бұрын
Thanks a lot 🤗🤗
@lukedsouza74 жыл бұрын
Thanks Great Job!
@abdulquadiransari74764 жыл бұрын
hey why the website went down . Why I am I unable to load the website?
@rayar23234 жыл бұрын
The website is up and running now
@sandipansarkar92114 жыл бұрын
great explanation
@shankarsai20674 жыл бұрын
Why don't we have a live interaction session with Punit sir????
@motivationda20672 жыл бұрын
Punit raj kumar 🤧
@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 >
@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
@favourudoh7533 жыл бұрын
amazing!!
@GiulioVonKerman3 жыл бұрын
How can I change the position of an item in a list?
@joyceadhiambo99772 жыл бұрын
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)
@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.
@majidalich29473 жыл бұрын
1. True 2. ['Hello', ' Hi', 'Java' , 'True' ] error : you cant use assignment operator in case of tuples 3. (1,3,4,5)
@sureshvarthya22502 жыл бұрын
True ["Hello", "Hi", "Java", True] error it does not support for reassigning values into the tuple ,because it is immutable
@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
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
@datasciencetoday712710 ай бұрын
@karanbirsingh59243 жыл бұрын
Lets we have 3 reviewers and 4 movies......how to code this
@kushal-shaw-pvt4 жыл бұрын
Sir please teach tkinter
@harshad92033 жыл бұрын
1. 4 2. hello, hi, java, true 3. error
@sunnyraut32433 жыл бұрын
1.True 2.Hello Hii Java True 3.Error cannot assign value to tuple
@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
@relaxingmoments-7872 жыл бұрын
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