ardiloot

Untitled

Oct 25th, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.17 KB | None | 0 0
  1. if __name__ == "__main__":
  2.     text1 = "ardi"
  3.     text2 = "ARDI"
  4.    
  5.     if text1.lower() == text2.lower():
  6.         print("Equal")
  7.     else:
  8.         print("Not equal")
Add Comment
Please, Sign In to add comment