美文网首页
Sth about Python 04---Module &am

Sth about Python 04---Module &am

作者: feng_Zi | 来源:发表于2015-05-20 11:07 被阅读13次

    #import math

    import math
    print math.sqrt(13689)

    #Built-In Functions

    def distance_from_zero(s):

     if type(s) == int or type(s) == float:
         return abs(s)
     else:
         return 'Nope'

    相关文章

      网友评论

          本文标题:Sth about Python 04---Module &am

          本文链接:https://www.haomeiwen.com/subject/bvmlqttx.html