Open In App

SymPy | Subset.size() in Python

Last Updated : 28 Aug, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

Subset.size() : size() is a sympy Python library function that returns the size of the subset.

Syntax :
sympy.combinatorics.subset.Subset.size()

Return :
the size of the subset.

Code #1 : size() Example




# Python code explaining
# SymPy.Subset.size()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.subsets import Subset
  
# Using from 
# sympy.combinatorics.subset.Subsets.size()
  
# Creating Subset
a = Subset(['c', 'd'], ['geek', 'for', 'c', 'd'])
  
# size value
print ("Subset a size : ", a.size)


Output :

Subset a size : 2

Code #2 : size() Example




# Python code explaining
# SymPy.Subset.size()
  
# importing SymPy libraries
from sympy.combinatorics import Permutation, Cycle
from sympy.combinatorics.subsets import Subset
  
# Using from 
# sympy.combinatorics.subset.Subsets.size()
  
# Creating Subset
a = Subset([2, 3, 4], [1, 2, 3, 4, 5])
  
# size value
print ("Subset a size : ", a.size)


Output :

Subset a size : 3



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads