Skip to content

Instantly share code, notes, and snippets.

@AABur
Created October 28, 2022 23:56
Show Gist options
  • Select an option

  • Save AABur/455229df1318a125f00c26ad8b40c471 to your computer and use it in GitHub Desktop.

Select an option

Save AABur/455229df1318a125f00c26ad8b40c471 to your computer and use it in GitHub Desktop.
python_f-strings_trick
text = "PYTHON"
print(f"{text}")
# PYTHON
print(f"{text:#<20}")
# PYTHON##############
print(f"{text:_>20}")
# ______________PYTHON
print(f"{text:.^20}")
# .......PYTHON.......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment