Last active
January 31, 2016 15:02
-
-
Save Xotabu4/b8661698ee61395e94be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
x = input('введите слово: ') | |
for number, character in enumerate(x, start=1): | |
if number % 2 == 0: | |
print(character) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment