ดังนั้นถ้าสตริงของฉันคือ "เพื่อนคือเพื่อนที่เท่ห์"
ฉันต้องการค้นหาดัชนีแรกของ 'เพื่อน':
mystring.findfirstindex('dude') # should return 4
คำสั่ง python สำหรับสิ่งนี้คืออะไร?
ขอบคุณ
ดังนั้นถ้าสตริงของฉันคือ "เพื่อนคือเพื่อนที่เท่ห์"
ฉันต้องการค้นหาดัชนีแรกของ 'เพื่อน':
mystring.findfirstindex('dude') # should return 4
คำสั่ง python สำหรับสิ่งนี้คืออะไร?
ขอบคุณ
คำตอบ:
>>> s = "the dude is a cool dude"
>>> s.find('dude')
4
is
จากประโยคthis is a cool dude
? ฉันลองใช้วิธีการค้นหา แต่มันส่งกลับดัชนี 2 แทนที่จะเป็น 5 ฉันจะบรรลุสิ่งนี้โดยใช้ find () ได้อย่างไร
index
และfind
ถัดไปไปที่วิธีการที่มีเช่นกันfind
และทั้งเกิดผลเหมือนกัน: การกลับมาของตำแหน่งที่เกิดขึ้นครั้งแรกที่แต่ถ้าไม่มีอะไรที่พบจะยกระดับในขณะที่ผลตอบแทน Speedwise ทั้งสองมีผลการเปรียบเทียบที่เหมือนกันindex
find
index
index
ValueError
find
-1
s.find(t) #returns: -1, or index where t starts in s
s.index(t) #returns: Same as find, but raises ValueError if t is not in s
rfind
และrindex
:โดยทั่วไปค้นหาและจัดทำดัชนีจะส่งคืนดัชนีที่เล็กที่สุดที่สตริงที่ส่งผ่านเริ่มต้น
rfind
และrindex
ส่งกลับดัชนีที่ใหญ่ที่สุดที่เริ่มต้นอัลกอริทึมการค้นหาสตริงส่วนใหญ่จะค้นหาจากซ้ายไปขวาดังนั้นฟังก์ชันที่ขึ้นต้นด้วยr
จะบ่งชี้ว่าการค้นหาเกิดขึ้นจากด้านขวา ไปทางซ้าย
ดังนั้นในกรณีที่ความเป็นไปได้ขององค์ประกอบที่คุณกำลังค้นหาอยู่ใกล้ถึงจุดสิ้นสุดมากกว่าจุดเริ่มต้นของรายการrfind
หรือrindex
อาจเร็วกว่านั้น
s.rfind(t) #returns: Same as find, but searched right to left
s.rindex(t) #returns: Same as index, but searches right to left
ที่มา: Python: Visual QuickStart Guide, Toby Donaldson
input_string = "this is a sentence"
และหากเราต้องการค้นหาคำที่เกิดขึ้นครั้งแรกis
มันจะได้ผลหรือไม่? # first occurence of word in a sentence input_string = "this is a sentence" # return the index of the word matching_word = "is" input_string.find("is")
เพื่อใช้สิ่งนี้ในวิธีอัลกอริทึมโดยไม่ใช้ฟังก์ชัน python inbuilt ใด ๆ สามารถนำไปใช้เป็นไฟล์
def find_pos(string,word):
for i in range(len(string) - len(word)+1):
if string[i:i+len(word)] == word:
return i
return 'Not Found'
string = "the dude is a cool dude"
word = 'dude1'
print(find_pos(string,word))
# output 4
def find_pos(chaine,x):
for i in range(len(chaine)):
if chaine[i] ==x :
return 'yes',i
return 'no'
ข้อ = "ถ้าคุณสามารถเก็บหัวของคุณไว้ได้เมื่อทุกอย่างเกี่ยวกับคุณ \ n กำลังสูญเสียพวกเขาและกล่าวโทษคุณ \ n ถ้าคุณสามารถเชื่อใจตัวเองได้เมื่อผู้ชายทุกคนสงสัยคุณ \ n แต่ก็เผื่อความสงสัยไว้ด้วย \ n ถ้าคุณทำได้ รอและอย่าเหนื่อยกับการรอ \ n หรือถูกโกหกอย่าโกหก \ n หรือถูกเกลียดอย่าหลีกทางให้เกลียด \ n และอย่าดูดีเกินไปหรือพูดอย่างฉลาดเกินไป :"
enter code here
print(verse)
#1. What is the length of the string variable verse?
verse_length = len(verse)
print("The length of verse is: {}".format(verse_length))
#2. What is the index of the first occurrence of the word 'and' in verse?
index = verse.find("and")
print("The index of the word 'and' in verse is {}".format(index))
-1
ถ้าไม่พบ