elements-of-python-style icon indicating copy to clipboard operation
elements-of-python-style copied to clipboard

Fixes issue #41 with a reference to f-strings to address issue #41

Open blaisep opened this issue 4 years ago • 0 comments

@amontalenti , I hope this saves you some time...

F-strings are new in Python 3.6 You may find them easier to compose and to read f"result: {value:{width}.{precision}}". The tradeoffs are localization and security. Python executes f-strings, so they present an additional attack surface: avoid including user-generated data.

  • @jtimmins-post20

blaisep avatar Sep 06 '19 18:09 blaisep