python 数値計算 平方根 

# -*- coding: utf-8 -*-
import math

def main():
    x = 5
    y = math.sqrt(x)
    print(y)

if __name__ == "__main__":
    main()