We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently we have unsigned indexing. Given a slice L, we can index the nth last element as L[len(L)-n]
L[len(L)-n]
Simpler way would be L[-n]
L[-n]
The text was updated successfully, but these errors were encountered:
duplicate of #11245 #33359 related to #16231 #20176
Sorry, something went wrong.
Closing per above.
No branches or pull requests
Currently we have unsigned indexing.
Given a slice L, we can index the nth last element as
L[len(L)-n]
Simpler way would be
L[-n]
The text was updated successfully, but these errors were encountered: