Python怎么返回一个数的平方根?#Python2022-06-02 13:10分类:Python 0 条评论 请先 登录 后评论 默认排序 时间排序 1 个回答|339 次阅读 2022-06-02 13:11 Coco老师 - 官方公众号:青少儿编程学习网 擅长:编程教育 • 网站:https://kidscodes.cn/math.sqrt()方法返回一个数字的平方根:import mathx = math.sqrt(64)print(x)执行结果:8.0 请先 登录 后评论