1 2 3 4 5 6 7
try: bytearray.count except AttributeError: print("SKIP") raise SystemExit print(bytearray(b"aaaa").count(b"a"))