Python String เริ่มต้นด้วย () Method
ตัวอย่าง
ตรวจสอบว่าสตริงเริ่มต้นด้วย "สวัสดี":
txt = "Hello, welcome to my world."
x = txt.startswith("Hello")
print(x)
ความหมายและการใช้งาน
เมธอดจะคืน ค่าstartswith()
True หากสตริงเริ่มต้นด้วยค่าที่ระบุ มิฉะนั้นจะเป็นเท็จ
ไวยากรณ์
string.startswith(value, start, end)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
value | Required. The value to check if the string starts with |
start | Optional. An Integer specifying at which position to start the search |
end | Optional. An Integer specifying at which position to end the search |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
ตรวจสอบว่าตำแหน่ง 7 ถึง 20 เริ่มต้นด้วยอักขระ "wel":
txt = "Hello, welcome to my world."
x = txt.startswith("wel",
7, 20)
print(x)