DEBSOURCES
Skip Quicknav
sources / micropython / 1.25.0%2Bds-1 / tests / basics / bytearray_count.py
1234567
try: bytearray.count except AttributeError: print("SKIP") raise SystemExit print(bytearray(b"aaaa").count(b"a"))