<span id="7ztzv"></span>
<sub id="7ztzv"></sub>

<span id="7ztzv"></span><form id="7ztzv"></form>

<span id="7ztzv"></span>

        <address id="7ztzv"></address>

            ???? Python ???
            ??6?? ??????
            ???? continue??? ????

            continue???

            continue???????????Python??????????????????????? ???? ??????????????

            ???continue???

            ??6.5 ???continue???

            #!/usr/bin/python
            # Filename: continue.py


            while True:
                s = raw_input('Enter something : ')
                if s == 'quit':
                    break
                if len(s) < 3:
                    continue
                print 'Input is of sufficient length'
                # Do other kinds of processing here...

            ????????code/continue.py??

            ???

            $ python continue.py
            Enter something : a
            Enter something : 12
            Enter something : abc
            Input is of sufficient length
            Enter something : quit

            ???????

            ???????????????????????????????????????????????????3??????????????????????????????????????len?????????????????????3??????????continue???????????????????????????????????????????????????????????????ʦ????

            ???continue??????for????????


            ???? ????? ????
            break??? ??? ????
            ?????
            @ssv
            <span id="7ztzv"></span>
            <sub id="7ztzv"></sub>

            <span id="7ztzv"></span><form id="7ztzv"></form>

            <span id="7ztzv"></span>

                  <address id="7ztzv"></address>

                      ŷ