Python lists, sets, and tuples explained 🍍
Bro Code Bro Code
1.8M subscribers
205,042 views
0

 Published On Nov 4, 2022

#python #tutorial #course

Python list set tuple tutorial example explained

00:00:00 intro
00:00:49 list
00:09:40 set
00:12:40 tuple
00:14:22 conclusion

List = [] ordered and changeable. Duplicates OK
Set = {} unordered and immutable, but Add/Remove OK. NO duplicates
Tuple = () ordered and unchangeable. Duplicates OK. FASTER

show more

Share/Embed