Skip to content

Instantly share code, notes, and snippets.

@htv2012
Created August 27, 2025 22:19
Show Gist options
  • Save htv2012/6101c81714e7cb93bd20e87e6d8a9938 to your computer and use it in GitHub Desktop.
Save htv2012/6101c81714e7cb93bd20e87e6d8a9938 to your computer and use it in GitHub Desktop.
Print a Python Banner
def banner(text: str, style="simple"):
if style == "simple":
out = f"\n#\n# {text}\n#"
elif style == "lines":
line = f"# {70 * '='}"
out = f"\n{line}\n# {text}\n{line}"
print(out)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment