>>> standard_deviation(0.21) 0.458257569495584
(variance: float)
| 70 | |
| 71 | # Function to calculate the standard deviation |
| 72 | def standard_deviation(variance: float) -> float: |
| 73 | """ |
| 74 | >>> standard_deviation(0.21) |
| 75 | 0.458257569495584 |
| 76 | """ |
| 77 | return variance**0.5 |
| 78 | |
| 79 | |
| 80 | if __name__ == "__main__": |
no outgoing calls
no test coverage detected