Created
March 27, 2024 18:41
-
-
Save makwanadeepam/94549cfa398aad4fed45e43657ad99c2 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| t: tuple=(1,2,3,4,5,5,5) | |
| # for loop | |
| for i in t: | |
| print(i) | |
| # immutable | |
| # count | |
| print(t.count(5)) | |
| # index | |
| print(t.index(5)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment