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

주어진 문자열에 하위 문자열이 있는지 확인하는 Python 프로그램.

<시간/>

이 문제는 문자열이 주어졌을 때 주어진 문자열에 부분 문자열이 있는지 확인해야 합니다.

알고리즘

Step 1: input a string and a substring from the user and store it in separate variables.
Step 2. Check if the substring is present in the string or not. To do this using find() in-built function.
Step 3. Print the final result.
Step 4. Exit.

예시 코드

def check(str1, sstr): 
   if (str1.find(sstr) == -1): 
      print(sstr,"IS NOT PRESENT IN THE GIVEN STRING") 
   else: 
      print(sstr,"IS PRESENT IN THE GIVEN STRING") 
# Driver code 
str1 = input("Enter the string ::>")
sstr=input("Enter Substring ::>")
check(str1, sstr) 

출력

Enter the string ::> python program
Enter Substring ::> program
program IS PRESENT IN THE GIVEN STRING
Enter the string ::> python program
Enter Substring ::> programming
programming IS NOT PRESENT IN THE GIVEN STRING