a='Καλή' b='μέρα' c=a+b print 'Καλημέρα' in c
c='Καλήμέρα' και όχι 'Καλημέρα'
a='Python' print a[4]+a[5]
'off'
'on'
'ho'
N = len(word) i = 0 while i<N/2 and palindrome : if ______________ : palindrome = False i += 1 print palindrome
word[i] != word[N + i +1]
word[i] != word[N-i-1]
word[i] == word[N-i-1]
a='Καλημέρα' for i in range(len(a)): if 'η' == a[i]: print i
True
4
3
'η'
protasi='ΝΙΨΟΝ ΑΝΟΜΗΜΑΤΑ ΜΗ ΜΟΝΑΝ ΟΨΙΝ' protasi_no_space='' for kathe_gramma in protasi: if kathe_gramma!=' ': protasi_no_space+=kathe_gramma x='' for kathe_gramma in protasi_no_space: x=kathe_gramma+x if x==protasi_no_space: print 'καρκινική επιγραφή' else: print 'δεν είναι καρκινική επιγραφή'
'ΝΙΨΟΝ ΑΝΟΜΗΜΑΤΑ ΜΗ ΜΟΝΑΝ ΟΨΙΝ'
'καρκινική επιγραφή'
'δεν είναι καρκινική επιγραφή'
τίπoτα
email=raw_input('Δώσε το email σου') katalixi= ___________ if katalixi=='.gr': print 'Ελληνικό email'
email[0:3]
email[-1]+email[-2]+email[-3]
email[len(email)-3:]
pinakida='XYZ1234' print 'xyz' in pinakida
a='Python' print 'nohtyP' not in a
a='Καλή μελέτη' b='' for i in range(4): b=b+a[i] print b
'ηλάκ'
'μελέτη'
'καλ'
'καλή'
a='Συμβολοσειρές' print 'σειρές' in a
count = 0 word = raw_input( 'δώσε μια λέξη: ' ) while _______________________: if word[0] == 'Α' or word[0] == 'α' : count+=1 word = raw_input('δώσε μια λέξη: ') print count
word[-1] != 'ω' or word[-1] != 'Ω'
word[-1] != 'ω' and word[-1] != 'Ω'
word[-1] == 'ω' and word[-1] == 'Ω'
a='ΗΣΗΘΑΜ' b='' c='' for i in a: b=b+i c=i+c print b,c
και τα δύο θα εμφανίσουν ΜΑΘΗΣΗ
το b θα εμφανίσει: ΗΣΗΘΑΜ
και το c: ΜΑΘΗΣΗ
το b θα εμφανίσει:ΜΑΘΗΣΗ
και το a: ΗΣΗΘΑΜ
a='ΕΠΑΛ' b=a[0]+a[3]+a[2]+a[1] if a==b: print 'True' else: print 'False'