Examveda

What is the output of the following code:
set1 = {1, 2}
set2 = {1, 2, 3, 4}
print(set1.issubset(set2))

A. TRUE

B. FALSE

C. Error

D. None

Answer: Option A


This Question Belongs to Python Program >> Sets In Python

Join The Discussion

Related Questions on Sets in Python