Snippets tagged “tuple”
4 snippets use this tag.
- Alternatives for returning multiple values from a Python functionPython
Using a tuple:
- Catch multiple exceptions in one line (except block)Python
In Python, you can catch multiple exceptions in a single except block by separating the exceptions with a tuple.
- Convert list to tuple in PythonPython
You can convert a list to a tuple in Python by using the built-in tuple() function.
- What are "named tuples" in Python?Python
"Named tuples" in Python are a subclass of the built-in tuple type, but with the added ability to access elements by name rather than just by index.