t374.py 232 B

12345678910
  1. import re
  2. def f(a, b=3, c=None):
  3. print a, b, c
  4. f(1, c=4)
  5. print re.split("a", "A stitch in time saves nine.", flags=re.IGNORECASE)
  6. print re.findall(string="A stitch in time saves nine.", flags=re.IGNORECASE, pattern="a")