美文网首页
Sth about Python 03---This is a

Sth about Python 03---This is a

作者: feng_Zi | 来源:发表于2015-05-20 10:46 被阅读5次

    '''

    In this small progrom there are some tips as follows.

    1.Attention the block of 'if-- elif-- else',or they will notice u a error

    2.The function return what u want ,but mustnot use return s


    '''

    def shut_down(s):

    #if u add 'rerutn s'here,it will have a error,there is no s return


     if s == "yes":
        return "Shutting down"
     elif s == "no":
        return "Shutdown aborted"
     else:
        return "sorry"

    相关文章

      网友评论

          本文标题:Sth about Python 03---This is a

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