Fork me on GitHub
摘要: Python基础教程 学习总结1. 导入模块“模块.函数”(优先使用)import mathmath.sqrt(9)在确定不会导入多个同名函数时,可以使用 “from 模块 import 函数” 方式from math import sqrtsqrt(9)还可以使用变量来引用函数foo=math.s... 阅读全文
posted @ 2015-01-26 22:16 落崖惊风 阅读(299) 评论(0) 推荐(0) 编辑