The mean (μ) of a binomial distribution is given by μ = n * p, and the standard deviation (σ) is given by σ = √(n * p * (1 - p)).
Example: Calculating mean and standard deviation of a binomial distribution
mean = n * p
std_dev = np.sqrt(n * p * (1 - p))
print("Mean:", mean)
print("Standard Deviation:", std_dev)