Skip to content

Commit e125ef4

Browse files
committed
added Python Sets and frozen set example
1 parent 268c957 commit e125ef4

File tree

2 files changed

+77
-0
lines changed

2 files changed

+77
-0
lines changed
+43
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# A set is an unordered collection of Unique elements.
2+
seta=set('abcd')
3+
print (seta)
4+
5+
l = ['apple','banana','orange','graps']
6+
print ("object type is", type(l),)
7+
b=set(l) # converted List into set objects
8+
print ("Object Type is ", type(b),)
9+
10+
s = {'apple','banana','orange','graps'}
11+
print ("object type is", type(s),)
12+
c=set(s) # converted List into set objects
13+
print ("Object Type is ", type(c),)
14+
15+
16+
example=set('abcdefg')
17+
print ("define variable",example)
18+
19+
example.add('z')
20+
print ("define variable",example)
21+
22+
d=example.copy()
23+
print("copy set example",d)
24+
25+
example.remove('a')
26+
print("removed a element from example set",example)
27+
28+
list1 = [1, 2, 3]
29+
list2 = [5, 6, 7]
30+
set1 = set(list2)
31+
set2 = set(list1)
32+
33+
# Update method
34+
set1.update(set2)
35+
36+
# Print the updated set
37+
print("set update example",set1)
38+
39+
example.discard ('c')
40+
print ("discard c example",example)
41+
42+
example.clear()
43+
print ("clear example",example)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# The frozenset() is an inbuilt function is Python which takes an iterable object as input and makes them immutable.
2+
# Simply it freezes the iterable objects and makes them unchangeable.
3+
4+
# Python program to understand frozenset() function
5+
6+
# set declaration
7+
number = {1, 2, 3, 4, 5, 6, 7, 8, 9}
8+
9+
print ("Object type of number is ",type(number))
10+
# converting Sets to frozenset
11+
fnumber = frozenset(number)
12+
print ("object type of fnumber is ",type(fnumber))
13+
14+
# printing details
15+
print("frozenset Object is : ", fnumber)
16+
17+
# Python program to understand use
18+
# of frozenset function
19+
20+
# creating a dictionary
21+
info = {"fname": "vijay", "age": 30, "sex": "Male",}
22+
23+
# making keys of dictionary as frozenset
24+
key = frozenset(info)
25+
26+
# printing keys details
27+
print('The frozen set is:', key)
28+
29+
# Python program to understand
30+
# use of frozenset function
31+
32+
# below line will generate error
33+
#TypeError: 'frozenset' object does not support item assignment
34+
fnumber[1] = "11"

0 commit comments

Comments
 (0)