Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Illustrate Different Set Operations

# Program to perform different set operations like in mathematics

# define three sets
E = {0, 2, 4, 6, 8};
N = {1, 2, 3, 4, 5};

# set union
print("Union of E and N is",E | N)

# set intersection
print("Intersection of E and N is",E & N)

# set difference
print("Difference of E and N is",E - N)

# set symmetric difference
print("Symmetric difference of E and N is",E ^ N)
Comment

PREVIOUS NEXT
Code Example
Python :: display calendar 
Python :: if else ifadesi 
Python :: jupyter notebook print formatted text 
Python :: the rest of steps in the link below 
Python :: beautifulsoup documentation 
Python :: python downsample image 
Python :: importare un foglio di un file excel in python 
Python :: get random bright hex color python 
Python :: linux echo redirect output to python script 
Python :: check two list python not match 
Python :: how to use ttk themes 
Python :: datetime day deutsch python 
Python :: how to create a cubic function in python 3 
Python :: sqlite to python list 
Python :: python find multiple matches in string 
Python :: 1 min candle resampling pandas 
Python :: flip a coin with array in python 
Python :: jupyter notebook file not opening about::blank 
Python :: numpy generate sequence from 0 to n 
Python :: Python Create a Local Variable 
Python :: install plotly manually 
Python :: change the Values to Numpy Array 
Python :: model summary change size of columns 
Python :: how to save a from with createvue django 
Python :: NLP text summarization with LSA 
Python :: svm classification involving pipelines 
Python :: django query filter less than 
Python :: traint test split on column id 
Python :: how to choose appropriate graph for your dataset visualization 
Python :: how to install opencv for python 3.7.3 
ADD CONTENT
Topic
Content
Source link
Name
5+6 =