t202.py 92 B

1234567
  1. def func():
  2. return "dog"
  3. def wee():
  4. assert 1 != 2
  5. assert "dog" == func()
  6. wee()