bytes_format_modulo.py 145 B

1234567
  1. # This test requires CPython3.5
  2. print(b"%%" % ())
  3. print(b"=%d=" % 1)
  4. print(b"=%d=%d=" % (1, 2))
  5. print(b"=%s=" % b"str")
  6. print(b"=%r=" % b"str")