Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python에서 OrderedDict()를 사용하여 문자열의 문자 순서 확인

<시간/>

문자열에서 문자의 순서를 확인해야 하는 경우 'OrderedDict' 메서드를 사용할 수 있습니다.

아래는 동일한 데모입니다 -

예시

from collections import OrderedDict
def check_order(my_input, my_pattern):
   my_dict = OrderedDict.fromkeys(my_input)
   pattern_length = 0
   for key,value in my_dict.items():
      if (key == my_pattern[pattern_length]):
         pattern_length = pattern_length + 1

      if (pattern_length == (len(my_pattern))):
         return 'The order of pattern is correct'

   return 'The order of pattern is incorrect'

my_input = 'Hi Mark'
input_pattern = 'Ma'
print("The string is ")
print(my_input)
print("The input pattern is ")
print(input_pattern)
print(check_order(my_input,input_pattern))

출력

The string is
Hi Mark
The input pattern is
Ma
The order of pattern is correct

설명

  • 필요한 패키지를 가져옵니다.

  • 두 개의 매개변수를 사용하는 'check_order'라는 메서드가 정의되어 있습니다.

  • 순서가 있는 사전은 'fromkeys' 방법을 사용하여 생성됩니다.

  • 패턴의 길이는 0으로 초기화됩니다.

  • 키가 패턴과 같으면 패턴의 길이가 증가합니다.

  • 패턴의 길이가 현재 길이와 같으면 순서가 맞는 것이고, 그렇지 않으면 순서가 틀린 것입니다.

  • 관련 메시지가 콘솔에 출력으로 표시됩니다.