How to use 'how to unlist a list in python' in Python

Every line of 'how to unlist a list in python' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
814def unlist(l):
815 """
816 Macht aus einer Liste mit nur einem Element einen Skalar.
817 """
818 if len(l) == 1:
819 return l[0]
820 return l

Related snippets