6 lines
171 B
Python
6 lines
171 B
Python
|
print("foobar".startswith("foo"))
|
||
|
print("foobar".startswith("Foo"))
|
||
|
print("foobar".startswith("foo1"))
|
||
|
print("foobar".startswith("foobar"))
|
||
|
print("foobar".startswith(""))
|