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