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.......

 

Share:

Subscribe to our newsletter