Created
February 22, 2019 23:47
-
-
Save Kamilnaja/e510241810f005b8bd7bde5e39c2f67a to your computer and use it in GitHub Desktop.
Python_do_something_with_every_second.py
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
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