Skip to content

Instantly share code, notes, and snippets.

@Xotabu4
Created January 31, 2016 14:30
Show Gist options
  • Save Xotabu4/7b1b8f20e9a454b8f163 to your computer and use it in GitHub Desktop.
Save Xotabu4/7b1b8f20e9a454b8f163 to your computer and use it in GitHub Desktop.
x = input('введите слово ')
i = 0
while i < len(x):
if i % 2 == 0:
print(x[i])
i += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment