Skip to content

Instantly share code, notes, and snippets.

@miku
Last active August 29, 2015 14:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save miku/9c2b8699c7642bbd7806 to your computer and use it in GitHub Desktop.
Save miku/9c2b8699c7642bbd7806 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
# coding: utf-8
raw = """
Diese grundsätzliche V e r b o r g e n h e i t Gottes, die sich n u r
dem N a c h f o l g e r ö f f n e t , ist m i t d e m Messiasgeheimnis
gemeint
"""
vocabulary = [
"ach"
"borgen",
"dem",
"die",
"diese",
"eröffnet",
"folge",
"gemeint",
"gott",
"gottes",
"grundsätzliche",
"heiter",
"ist",
"it",
"messiasgeheimnis",
"nachfolger",
"nur",
"sich",
"verborgenheit",
]
def concat(s):
return s.replace(" ", "")
if __name__ == '__main__':
print(concat(raw))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment