Skip to content

Instantly share code, notes, and snippets.

@computer-tutor
Created April 28, 2020 05:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save computer-tutor/1ce54a44968d3a605b54d1981219f229 to your computer and use it in GitHub Desktop.
Save computer-tutor/1ce54a44968d3a605b54d1981219f229 to your computer and use it in GitHub Desktop.
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