scrimba
Python 101 in Bangla
19. Sets
Go Pro!Bootcamp

Bootcamp

Study group

Collaborate with peers in your dedicated #study-group channel.

Code reviews

Submit projects for review using the /review command in your #code-reviews channel

AboutCommentsNotes
19. Sets
Expand for more info
index.py
run
preview
console
friends = ['Tushar','Sabbir','Shaon','Sami','Afzal','Razu','Asif'] #List
friends_tuple = ('Tushar','Sabbir','Shaon','Sami','Afzal','Razu','Asif') #Tuple
nums = {11,111,111,22} #Set1
nums2 = {22,222,222,22,11,111} #Set2

Console
/index.html
-8:01