So tuples are typically geographic coordinates or specific details about an item while lists are dynamic?
@A.T.V_Creator5 ай бұрын
your voice is so adorable, by the way video is very helpful. Thanks ❤
@imranchowdhury3099 Жыл бұрын
wow..!! u made it so easy
@Jose_T1312 жыл бұрын
Great explanation
@primedynamixx2 жыл бұрын
I am new to python and this may be a dumb question! But what is the benefit of using tuples?
@rwahowa2 жыл бұрын
Since tuples are immutable, you should use them to store related data. For instance, details about a car or a person. car = ("Ford","GT 40",1964) - this would be details about a specific car. For a person, you'd store details about them ie age, name etc.
@crackjoker-yb8jp Жыл бұрын
They are faster than lists and use less storage.
@Nerd41414 жыл бұрын
Hi ma'am please..make the videos on javascript....i dont know anything about javascript, but when i watch your videos it is very clearly understanding...plz help me to learn javascript...now I'm inbtech 3rd year and i didn't do any projects till now...thanks in advance
@codingwithestefania4 жыл бұрын
Hi, I'm very glad it helped you and thank you for your suggestion. I will definitely add more videos on this topic.
@I_am_FRANCO2 жыл бұрын
@@codingwithestefania 🎉
@الحمدللهوالشكرلله-ذ7و4 жыл бұрын
Hi can you tell me how time spend you to learning python
@codingwithestefania4 жыл бұрын
Hi, it really depends on the time dedicated to the learning resources and practice. I suggest starting with the fundamentals and combining that with practical projects.
@puddidonlickhd24276 ай бұрын
so why even use tuples?
@markmusk5212 жыл бұрын
thank you very much
@ImpossibleEvan Жыл бұрын
So do Tuples really have a use? Couldn't I just use a list and not change it? What's the real benefit
@fabricehategekimana5350 Жыл бұрын
At the beginning I thought immutable data structures where bad but their power is to not allow you to change them (incidentally). That's a functionality used in functional programming. They are more performant (time and space) than mutable data and make the code EASIER to reason about. Really cool when you debug your code and do concurrent programming. The only problem is that this immutability is only enforced to data and not variables in python. The best practice is to always use immutability and only use mutability when needed