Skip to content

Instantly share code, notes, and snippets.

@IndhumathyChelliah
Created July 17, 2020 00:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IndhumathyChelliah/0f120cd20054aa05055cd4f095b0ee75 to your computer and use it in GitHub Desktop.
Save IndhumathyChelliah/0f120cd20054aa05055cd4f095b0ee75 to your computer and use it in GitHub Desktop.
t1=(1,2,3,4,5)
t2=(1,7)
print (t1>t2)#Output:False
print (t1<t2)#Output:True
t3=(1,2,7,4)
t4=(1,7,3,4)
print (t3>t4)#Output:False
print (t3<=t4)#Output:True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment