美文网首页
python 定义函数

python 定义函数

作者: 小李不是你 | 来源:发表于2018-11-29 10:44 被阅读0次
    def test(sum):
        if  not isinstance(sum,(int,float)):
            raise TypeError('只能为int类型或 float')
    
        if  sum >= 10:
            print(sum)
        else:
            print('sum 没有满足条件')
    
    test('dsss')
    
    

    相关文章

      网友评论

          本文标题:python 定义函数

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