Skip to content

Instantly share code, notes, and snippets.

@Kamilnaja
Created February 22, 2019 23:47
Show Gist options
  • Save Kamilnaja/e510241810f005b8bd7bde5e39c2f67a to your computer and use it in GitHub Desktop.
Save Kamilnaja/e510241810f005b8bd7bde5e39c2f67a to your computer and use it in GitHub Desktop.
Python_do_something_with_every_second.py
string = "How good is have account on StackOverflow and create new posts"
def odd(data):
idx, el = data
return el if idx % 2 == 0 else el + "\n"
print(" ".join(list(map(odd, list(enumerate(string.split(" ")))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment