Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
October 24, 2022 06:22 pm GMT

99% of Python Programmers don't know this feature

Did you use or know about this feature before?

text = "PYTHON"print(f"{text}")# PYTHONprint(f"{text:#<20}")# PYTHON##############print(f"{text:_>20}")# ______________PYTHONprint(f"{text:.^20}")# .......PYTHON.......

Original Link: https://dev.to/treadalex/99-of-python-programmers-dont-know-this-feature-3nki

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To