Skip to main content

It can check if A is a subset of B based on python 3.10

Project description

iscontain

基于python3.10,判断A是否为B子集
It can check if A is a subset of B
base on python 3.10

usage

支持有序与无序两种模式,支持列表,元组,字符串
It supports both ordered and disordered modes
Types such as list tuple strings are also supported

disorder

from iscontain import iscontain
l1 = [2, 4]
l2 = [2, 3, 4, 5, 4, 6]
print(iscontain(l1, l2))#True

order

from iscontain import iscontain
l1 = [2, 4]
l2 = [2, 3, 4, 5, 4, 6]
print(iscontain(l1, l2, accurate=True))#False
l1 = [4, 5, 4]
l2 = [2, 3, 4, 5, 4, 6]
print(iscontain(l1, l2, accurate=True))#True

Project details


Release history Release notifications | RSS feed

This version

0.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

iscontain-0.1.tar.gz (2.6 kB view hashes)

Uploaded Source

Built Distribution

iscontain-0.1-py3-none-any.whl (3.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page