2019-01-27 05:20:45 +00:00
|
|
|
__author__ = "swenson"
|
2015-07-07 22:43:12 +00:00
|
|
|
|
|
|
|
import math
|
|
|
|
|
2019-01-27 05:20:45 +00:00
|
|
|
|
2015-07-07 22:43:12 +00:00
|
|
|
def example_function(x):
|
|
|
|
"""Compute the square root of x and return it."""
|
2019-01-27 05:20:45 +00:00
|
|
|
return math.sqrt(x)
|