1print("foobar".endswith("bar"))
2print("foobar".endswith("baR"))
3print("foobar".endswith("bar1"))
4print("foobar".endswith("foobar"))
5print("foobar".endswith(""))
6print("foobar".endswith("foobarbaz"))
7
8#print("1foobar".startswith("foo", 1))
9#print("1foo".startswith("foo", 1))
10#print("1foo".startswith("1foo", 1))
11#print("1fo".startswith("foo", 1))
12#print("1fo".startswith("foo", 10))
13
14try:
15    "foobar".endswith(1)
16except TypeError:
17    print("TypeError")
18