Write a Python Program to Take in Two Strings and Print the Larger String
Topic: Write a Python Program to Take in Two Strings and Print the Larger String
Solution
string1='python' string2='theschoolofai' count1=0 count2=0 for i in string1: count1=count1+1 for j in string2: count2=count2+1 if(count1
List all Python Programs