Python subsequence of string Question : 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()…
Posted inPython