Skip to content

Commit

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

number = 23
running = True

while running:
guess = int(raw_input('Εισάγετε έναν ακέραιο: '))

if guess == number:
print 'Συγχαρητήρια, το πετύχατε!'
running = False # Αυτό προκαλεί διακοπή του βρόχου
elif guess < number:
print 'Χμ, δοκιμάστε έναν μεγαλύτερο ακέραιο.'
else:
print 'Χμ, δοκιμάστε έναν μικρότερο ακέραιο.'
else:
print 'Ο βρόχος while ολοκληρώθηκε.'
# Εδώ μπορείτε να βάλετε όποιες άλλες εντολές θέλετε...

print 'Τέλος.'

0 comments on commit 53e92b4

Please sign in to comment.