Important Notice:

Course Content
Set Data Type in Python (Chapter-14) M3-R5
About Lesson

 

Set Method in Python

Sr. No

Set Method

Description

1

add()

इस method इस्तेमाल set पर element add करने के लिए किया जाता है।

2

clear()

दिए हुए set को clear करता है।

3

copy()

दिए हुए set को copy करता है।

4

difference()

दिए हुए दो sets का difference update करके return करता है।

5

discard()

दिए गए set में से दिए हुए element को remove करता है।

6

intersection()

दिए हुए sets से एक जैसे element(s) को set में return करता है।

7

issubset()

अगर एक set का subset दूसरा set होता है तो True return होता है।

8

issuperset()

अगर दिया हुआ मुख्य set; दिए हुए set का superset होता है तो ‘True’ return होता है।

9

pop()

random element को remove करके return करता है।

10

remove()

इस method का इस्तेमाल set से एक element remove करने के लिए किया जाता है।

11

union()

दिए गए sets को इकठ्ठा करके set को return किया जाता है।

12

update()

इस method का इस्तेमाल set को update करने के लिए किया जाता है।

 

Set Method in Python

Sr. No

Set Method

Description

1

add()

This method is used to add an element to the set.

2

clear()

Clears the given set.

3

copy()

Copies the given set.

4

difference()

Updates and returns the difference of the two given sets.

5

discard()

Removes the given element from the given set.

6

intersection()

Returns the identical element(s) from the given set.

7

issubset()

Returns True if one set is a subset of another set.

8

issuperset()

If given main set; Returns ‘True’ if it is a superset of the given set.

9

pop()

Removes and returns a random element.

10

remove()

This method is used to remove an element from the set.

11

union()

The set is returned by collecting the given sets.

12

update()

This method is used to update the set.

error: Content is protected !!