Aim python library master (25) orderedset

[Library description]

Easy to handle sets

[Preparation]

In python2.7, I got an error during installation, so I used python3.5

【program】

orderedset.py


# -*- coding: utf-8 -*-

from orderedset import OrderedSet

oset = OrderedSet([1, 2, 3])
oset2 = OrderedSet([3, 2, 1])
oset3 = OrderedSet([1, 2, 3, 4])

print (oset == oset2)
# False
print (oset <= oset2)
# True

#Whether it is a subset
print (oset.isorderedsubset(oset2))
# False
print (oset.isorderedsubset(oset3))
# True

oset = OrderedSet([1, 2, 3])
lst = [1, 2, 3]
tes = {1, 2, 3, 4}

print (oset == lst)
# True
print (oset <= tes)
# True

print (oset | lst)
# OrderedSet([1, 2, 3])
print (oset | tes)
# OrderedSet([1, 2, 3, 4])

[Reference site]

document

Recommended Posts

Aim python library master (25) orderedset
Aim python library master (48) autopep8
Aim python library master (36) json2html
Aim python library master (49) psidialogs
Aim python library master (26) easyxml
Aim python library master (29) table_printer
Aim python library master (55) namespaces
Aim python library master (46) browserplus
Aim python library master (30) chronyk
Aim python library master (42) speedrecorder
Aim python library master (37) slimurl
Aim python library master (44) pynetviz
Aim python library master (8) rolex
Aim python library master (52) marktime
Aim python library master (7) numparser
Aim python library master (21) hy
Aim python library master (18) requests
Aim python library master (20) pyyaml
Aim python library master (34) concurrent
Aim python library master (43) cpmoptimize
Aim python library master (68) pazudorasolver
Aim python library master (58) faker
Aim python library master (38) beautiful_print
Aim python library master (65) geopy
Aim python library master (2) vincenty
Aim python library master (59) logbook
Aim python library master (51) pyautogui
Aim python library master (0) Links
Aim python library master (53) psutil
Aim python library master (22) htmltag
Aim python library master (67) httpie
Aim python library master (45) xlsxwriter
Aim python library master (9) WebHelpers
Aim python library master (32) sql
Aim python library master (60) colourettu
Aim python library master (64) pretty_cron
Aim python library master (56) colorthief
Aim python library master (17) rangeparser
Aim python library master (62) glances
Aim python library master (12) excel
Aim python library master (24) combi
Aim python library master (63) easygui
Aim python library master (19) riemann
Aim python library master (39) goless
Aim python library master (54) tqdm
Aim python library master (16) byteplay
Aim python library master (23) memory_utils
Aim python library master (27) benchit
Aim python library master (35) pywildcard
Aim python library master (14) pyknon
Aim python library master (15) brute
Aim python library master (50) xlwings
Aim python library master (31) adipy
Aim python library master (57) browsergui
Aim python library master (1) da-vinci
Aim python library master (33) human friendly
Aim python library master (4) ASCII Py
Aim python library master (28) verbal expressions
Aim python library master (5) terminal tables
Aim Node.js Library Master (3) python-runner
Python 3.6 email library