Every line of 'average of 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.
158 def average(self, *args): 159 return sum(args) / float(len(args))