Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Python

โปรแกรม Python ตรวจสอบว่ามี substring อยู่ใน string ที่กำหนดหรือไม่


ในปัญหานี้ สตริงจะได้รับ เราต้องตรวจสอบว่ามีสตริงย่อยในสตริงที่กำหนดหรือไม่

อัลกอริทึม

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