Skip to content

Instantly share code, notes, and snippets.

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