99% of Python Programmers don’t know this feature

99%-of-python-programmers-don’t-know-this-feature

Did you use or know about this feature before?

text = "PYTHON"

print(f"{text}")
# PYTHON
print(f"{text:#<20}")
# PYTHON##############
print(f"{text:_>20}")
# ______________PYTHON
print(f"{text:.^20}")
# .......PYTHON.......
Total
1
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
15-react-interview-questions-to-help-you-ace-your-next-technical-interview

15 React Interview Questions to Help You Ace Your Next Technical Interview

Next Post
postgresql-vs-sqlite

PostgreSQL vs SQLite

Related Posts