Skip to content

Instantly share code, notes, and snippets.

@nozma
Last active August 17, 2017 13:04
Show Gist options
  • Select an option

  • Save nozma/b06214a24d7c8b21f6b2bb35a88c2bd6 to your computer and use it in GitHub Desktop.

Select an option

Save nozma/b06214a24d7c8b21f6b2bb35a88c2bd6 to your computer and use it in GitHub Desktop.
# coding: utf-8
s = 'Hi He Lied Because Boron Could Not Oxidize Fluorine. New Nations Might Also Sign Peace Security Clause. Arthur King Can.'
target = 1, 5, 6, 7, 8, 9, 15, 16, 19
result = [w[: 1 if i in target else 2] for i, w in enumerate(s.split(), 1)]
print(result)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment