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…
Posted inPython