#脚本:#!/usr/bin/env pythonweight=float(raw_input('please input your weight:'))high=float(raw_input('please input your high:'))print '{0:.2f}'.format(weight/(high**2))#输出:please input your weight:80please input your high:1.7526.12