python学习笔记之008.py

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhendeaini18/article/details/77075093
#!/usr/bin/env python
# coding=utf-8
# Created Time:    2017-08-08 14:06:52
# Modified Time:   2017-08-08 14:10:22


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...
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章