Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to calculate the mean and the standard deviation of a list of floating-point values in Python

1 Answer

0 votes
import math

def calculate_mean(data):
    if not data:
        return 0.0
        
    return sum(data) / len(data)

def calculate_standard_deviation(data, mean):
    if len(data) < 2:
        return 0.0
    sum_of_squared_differences = sum((x - mean) ** 2 for x in data)
    variance = sum_of_squared_differences / (len(data) - 1)
    
    return math.sqrt(variance)

numbers = [3.4, 1.8, 4.3, 5.0, 6.2]
mean = calculate_mean(numbers)
stddev = calculate_standard_deviation(numbers, mean)

print(f"Mean: {mean:.2f}")
print(f"Standard Deviation: {stddev:.2f}")



'''
run

Mean: 4.14
Standard Deviation: 1.66

'''

 



answered Jun 29, 2025 by avibootz
...