I have some trouble with the next one (beginnerlevel) slicing an input string in two even pieces or when the length is odd, leave the middle character at the first part.(only boolean)
test=input('giv a a word')
if test[:]%2==0:
print(str(test)+' is an even word' )
else:
print(str(test)+' is an**strong text** odd word')
#output: print its an even or odd word and the parts are ... and .....
close=input('press enter to close')