Skip to content

Instantly share code, notes, and snippets.

@tzafrirben
Created November 4, 2019 12:32
Show Gist options
  • Save tzafrirben/335ad12582064bf6ebd798284efc4687 to your computer and use it in GitHub Desktop.
Save tzafrirben/335ad12582064bf6ebd798284efc4687 to your computer and use it in GitHub Desktop.
def hello_world():
space_counter = 0
s = "Hello World"
for c in s:
print(" " * space_counter + c)
space_counter += 1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment