/
diev
/
swaroopch-byte-of-python
Обзор
Документация
Войти
/
diev
/
swaroopch-byte-of-python
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
programs/continue.py
9 строк
231 B
dbojan
updated to python 3 code
31 мар 2016, 16:04
31 мар 2016, 16:04
984404e
Код
Авторство
О чём код?
while True: s = input('Enter something : ') if s == 'quit': break if len(s) < 3: print('Too small') continue print('Input is of sufficient length') # Do other kinds of processing here...