#python-beginner
Read more stories on Hashnode
Articles with this tag
Bismillah... It was the Second Day and it was based on pretty basic functions of Python although it was an easy one...every step made me more...
#Solution - def animal_crackers(str): text= str.lower().split() #print(text) return text[0][0]==text[1][0] print(animal_crackers('Clever...
ANIMAL CRACKERS · Write a function that takes a two-word string and returns True if both words begin with the same letter animal_crackers ('Levelheaded...