1# test str of function
2
3def f():
4    pass
5print(str(f)[:8])
6