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


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Alex Tread

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


This content originally appeared on DEV Community 👩‍💻👨‍💻 and was authored by Alex Tread


Print Share Comment Cite Upload Translate Updates
APA

Alex Tread | Sciencx (2022-10-24T18:22:05+00:00) 99% of Python Programmers don’t know this feature. Retrieved from https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/

MLA
" » 99% of Python Programmers don’t know this feature." Alex Tread | Sciencx - Monday October 24, 2022, https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/
HARVARD
Alex Tread | Sciencx Monday October 24, 2022 » 99% of Python Programmers don’t know this feature., viewed ,<https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/>
VANCOUVER
Alex Tread | Sciencx - » 99% of Python Programmers don’t know this feature. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/
CHICAGO
" » 99% of Python Programmers don’t know this feature." Alex Tread | Sciencx - Accessed . https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/
IEEE
" » 99% of Python Programmers don’t know this feature." Alex Tread | Sciencx [Online]. Available: https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/. [Accessed: ]
rf:citation
» 99% of Python Programmers don’t know this feature | Alex Tread | Sciencx | https://www.scien.cx/2022/10/24/99-of-python-programmers-dont-know-this-feature/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.