Skip to content

Instantly share code, notes, and snippets.

@DevloperHS
Created July 23, 2023 15:38
Show Gist options
  • Save DevloperHS/fd28b5b3bc3ebf85382f2ab06360f25d to your computer and use it in GitHub Desktop.
Save DevloperHS/fd28b5b3bc3ebf85382f2ab06360f25d to your computer and use it in GitHub Desktop.
F string programs
text = "PYTHON"
print(f"{text}")
print(f"{text:#<20}")
print(f"{text:_>20}")
print(f"{text:.^20}")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment