Python String ลงท้ายด้วย () Method
ตัวอย่าง
ตรวจสอบว่าสตริงลงท้ายด้วยเครื่องหมายวรรคตอน (.):
txt = "Hello, welcome to my world."
x = txt.endswith(".")
print(x)
ความหมายและการใช้งาน
เมธอดจะคืน ค่าendswith()
True หากสตริงลงท้ายด้วยค่าที่ระบุ มิฉะนั้นจะเป็นเท็จ
ไวยากรณ์
string.endswith(value, start, end)
ค่าพารามิเตอร์
Parameter | Description |
---|---|
value | Required. The value to check if the string ends 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 |
ตัวอย่างเพิ่มเติม
ตัวอย่าง
ตรวจสอบว่าสตริงลงท้ายด้วยวลี "my world" หรือไม่:
txt = "Hello, welcome to my world."
x = txt.endswith("my world.")
print(x)
ตัวอย่าง
ตรวจสอบว่าตำแหน่ง 5 ถึง 11 ลงท้ายด้วยวลี "my world":
txt = "Hello, welcome to my world."
x = txt.endswith("my world.",
5, 11)
print(x)