3. Write a class/function to return True if 2 input strings are anagram to each other. string1 is an anagram of string2 if string2 can be obtained by rearranging the characters in string1. Example:
string1 = ‘smart’, string2 = ‘marts’ - result = True
string1 = ‘secure’, string2 = ‘rescue’ - result = True
4. Write a program in Python, which:
a. Finds and fetches all images on a webpage and stores the images on disk b. Writes a file on disk, which lists the URLs of the images fetched
Comments
Leave a comment