summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string_startswith.py
blob: 5cf730c03c0d9bbeb8e6e42a78b463d7bb5f2800 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
print("foobar".startswith("foo"))
print("foobar".startswith("Foo"))
print("foobar".startswith("foo1"))
print("foobar".startswith("foobar"))
print("foobar".startswith(""))

print("1foobar".startswith("foo", 1))
print("1foo".startswith("foo", 1))
print("1foo".startswith("1foo", 1))
print("1fo".startswith("foo", 1))
print("1fo".startswith("foo", 10))