/top/
/new/
/best/
/ask/
/show/
/job/
^
slacker news
login
about
←back to thread
Python’s new t-strings
(davepeck.org)
620 points
tambourine_man
| 1 comments |
21 Apr 25 04:31 UTC
|
HN request time: 0.245s
|
source
Show context
runekaagaard
◴[
21 Apr 25 08:32 UTC
]
No.
43749575
[source]
▶
>>43748512 (OP)
#
It feels a bit like "cheating" that new x-string features are built-in only. It would be cool to be able to do:
from foo import bar bar"zoop"
replies(7):
>>43749594
#
>>43749601
#
>>43749709
#
>>43750748
#
>>43751130
#
>>43752217
#
>>43757083
#
1.
masklinn
◴[
21 Apr 25 08:35 UTC
]
No.
43749594
[source]
▶
>>43749575
#
A t-string is a literal for a Template object which is a data holder, it doesn't actually do anything, so you would simply call
bar(t"zoop")
ID:
GO
↑