Skip to content

Commit

Permalink
Started continue.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
marios-zindilis committed Oct 4, 2011
1 parent f1375c8 commit 05c5be5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions continue.py
@@ -0,0 +1,12 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Filename: continue.py

while True:
s = raw_input('Εισάγετε κάτι: ')
if s == 'quit':
break
if len(s) < 3:
continue
print 'Η είσοδος ήταν αρκετά μακριά.'
# Κάντε ό,τι άλλο θέλετε εδώ...

0 comments on commit 05c5be5

Please sign in to comment.