- printf now starts a Python interpreter to parse fstrings (internal implementation only)
- MSVC now considered a D compiler
- added more undefined behavior
- printf now starts a Python interpreter to parse fstrings (internal implementation only)
- MSVC now considered a D compiler
- added more undefined behavior
fstrings.wtf
On HN: news.ycombinator.com/item?id=4461...
On Lobsters: lobste.rs/s/cwmt11/do_...
On /r/Python: old.reddit.com/r/Python/com...
#Programming #Formatting #fStrings #Printing #Quiz
fstrings.wtf
On HN: news.ycombinator.com/item?id=4461...
On Lobsters: lobste.rs/s/cwmt11/do_...
On /r/Python: old.reddit.com/r/Python/com...
#Programming #Formatting #fStrings #Printing #Quiz
#python #geeky #geekpride #ilovepython #fstrings
#python #geeky #geekpride #ilovepython #fstrings
Supercharge your Python! 🚀 Learn about the exciting new template strings in Python 3.14 beta and explore the future of WebAssembly! #Python314 #Fstrings #PythonNews
Click here↓↓↓
aimindupdate.com/2025/05/31/p...
Supercharge your Python! 🚀 Learn about the exciting new template strings in Python 3.14 beta and explore the future of WebAssembly! #Python314 #Fstrings #PythonNews
Click here↓↓↓
aimindupdate.com/2025/05/31/p...
if this book expects me to use fucking string concatenation and shit I will find another book, fstrings came out in python 3.6, which was like, 2016!
if this book expects me to use fucking string concatenation and shit I will find another book, fstrings came out in python 3.6, which was like, 2016!
Duck typing ftw! \o/
Duck typing ftw! \o/
> I love working from cli (& 😭when the first gui came out)
> I enjoy RegEx
> I get a little thrill with fstrings
> I like traditional textadventure games / MUDs
* actually I was called 'weird' 😂
my quest to create a #languagelearning textadv game continues
> I love working from cli (& 😭when the first gui came out)
> I enjoy RegEx
> I get a little thrill with fstrings
> I like traditional textadventure games / MUDs
* actually I was called 'weird' 😂
my quest to create a #languagelearning textadv game continues
Learn how to write cleaner and more efficient print statements in Python by avoiding multiple print calls
Learn how to write cleaner and more efficient print statements in Python by avoiding multiple print calls
template.sql
SELECT *
FROM schema.table
WHERE {filter_expression}
script.py
(
open('template.sql')
.read()
.format(
filter_expression='value = 1'
)
)
template.sql
SELECT *
FROM schema.table
WHERE {filter_expression}
script.py
(
open('template.sql')
.read()
.format(
filter_expression='value = 1'
)
)