- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What is the difference between operator and method on Python set?
Python's set object represents built-in set class. Different set operations such as union, intersection, difference and symmetric difference can be performed either by calling corresponding methods or by using operators.
Union by method
>>> s1={1,2,3,4,5} >>> s2={4,5,6,7,8} >>> s1.union(s2) {1, 2, 3, 4, 5, 6, 7, 8} >>> s2.union(s1) {1, 2, 3, 4, 5, 6, 7, 8}
Union by | operator
>>> s1={1,2,3,4,5} >>> s2={4,5,6,7,8} >>> s1|s2 {1, 2, 3, 4, 5, 6, 7, 8}
Intersection by method
>>> s1={1,2,3,4,5} >>> s2={4,5,6,7,8} >>> s1.intersection(s2) {4, 5} >>> s2.intersection(s1) {4, 5}
Intersection & operator
>>> s1={1,2,3,4,5} >>> s2={4,5,6,7,8} >>> s1&s2 {4, 5} >>> s2&s1 {4, 5}
Difference method
>>> s1={1,2,3,4,5} >>> s2={4,5,6,7,8} >>> s1.difference(s2) {1, 2, 3} >>> s2.difference(s1) {8, 6, 7}
Difference - operator
>>> s1={1,2,3,4,5} >>> s2={4,5,6,7,8} >>> s1-s2 {1, 2, 3} >>> s2-s1 {8, 6, 7}
- Related Articles
- What is the difference between equals() method and == operator in java?
- Difference between == and is operator in python.
- Explain difference between == and is operator in Python.
- What is the difference between the dot (.) operator and -> in C++?
- What is the difference between working of append and + operator in a list in Python?
- What is the difference between MySQL ISNULL() function and IS NULL operator?
- What is the difference between java method and native method?
- What is the difference between new operator and object() constructor in JavaScript?
- What is the significant difference between MySQL LIKE and equal to (=) operator?
- What is the difference between –Match, -Like and –Contains Operator in PowerShell?
- What is the difference between del, remove and pop on lists in python ?
- What is difference between a Java method and native method
- What is the difference between a Java method and a native method?
- What is the difference between method hiding and method overriding in Java?
- What is the difference between method overloading and method hiding in Java?

Advertisements