- 1
Write a python program to find whether two string contains equal number of characters or not
I need this pla help me
3 Réponses
+ 3
Just use len function
if len(string1)==len(string2):
print("Yes They are equal")
else:
print("No They Are Not Equal")
Hope It Helps You 😊
+ 5
Pls use the description section to post ur try(code) so that we can help with that.
I will give u a hint: use length to compare length of 2 strings
+ 1
Thank you so much Hacker Badshah and Alphin K Sajan