?? continue.py
字號(hào):
#!/usr/bin/env 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...
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -