Create Python/quantum/README.md (#1834)

* Create Python/quantum/README.md

Started at #1831

* fixup! Format Python code with psf/black push

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
This commit is contained in:
Christian Clauss
2020-04-07 11:58:23 +02:00
committed by GitHub
parent f35484baf6
commit 3d129a4964
2 changed files with 9 additions and 1 deletions

View File

@@ -14,7 +14,7 @@ def reverse_words(input_str: str) -> str:
input_str = input_str.split(" ")
new_str = list()
return ' '.join(reversed(input_str))
return " ".join(reversed(input_str))
if __name__ == "__main__":