Python subsequence of string

Python subsequence of stringQuestion : Python program to check a string is a subsequence of another string ?Answer :#Python program to check a string is a subsequence of string str1=input("Enter string1 : ").lower() str2=input("Enter string2 : ").lower() list=[] for i…

This Question has been answered. 

Please Login or Register to See The Answer