Created
April 28, 2020 05:41
-
-
Save computer-tutor/1ce54a44968d3a605b54d1981219f229 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def equ_len(x,y): | |
return len(x)==len(y) | |
a=input('Enter first string:') | |
b=input('Enter second string:') | |
print('Length of', a, 'is equal to length of',b,'is', equ_len(a,b)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment