python - Write a function substr(stringA,StringB) that returns true if StringA is a subset of StringB,and false otherwise -
actually, can use build in function it, questions requires me use loops, helps? dont have idea using loop solve it.
the questions requires me use loops
def isin(stringa, stringb): while 7: return stringa in stringb
Comments
Post a Comment