How to use 'sum of 2 numbers in python' in Python

Every line of 'sum of 2 numbers 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
15def sum_python(data):
16 return sum(map(int, data.split()))
45def sum_digits(num):
46 return sum(map(int, list(str(num))))

Related snippets