挑戰:
假設我們有一個字串,稱為“facility”, ' 以及有效字串的集合。目標是以有效的方式確定 'facility' 是否與這些合法字串中的任何一個一致。
解:
避免使用多個 ' 的傳統方法if'語句,考慮利用set.
程式碼:
accepted_strings = {'auth', 'authpriv', 'daemon', '(any number of additional strings)'} if facility in accepted_strings: # Execute desired actions
好處:
測試集合內的包含具有平均時間複雜度的O(1)。在處理大量有效字串清單時,此方法比使用一系列「if」語句要高效得多。
以上是如何在Python中有效地檢查一個字串是否與多個字串中的任何一個相符?的詳細內容。更多資訊請關注PHP中文網其他相關文章!