תשובה אחת
היי, זה הקוד שחשבתי עליו:
def checkword (word):
if 'exit' in word:
return word (::2);
else:
return word (::-1);
userinput = raw_input ("please enter a word: ")
print checkword (userinput)
כאן תראי את זה יותר מסודר:
https://pastebin.com/qbiydbts
def checkword (word):
if 'exit' in word:
return word (::2);
else:
return word (::-1);
userinput = raw_input ("please enter a word: ")
print checkword (userinput)
כאן תראי את זה יותר מסודר:
https://pastebin.com/qbiydbts
באותו הנושא: