Python Land
pythonland.bsky.social
Python Land
@pythonland.bsky.social
Official https://python.land account
To learn all about strings, head over to my extensive article on strings
Python String: Working With Text
Learn what a Python string is, how to create strings, which quotes to use when creating them, and how to perform operations on a string.
python.land
October 6, 2023 at 8:44 AM
Another notable thing is using a per-interpreter GIL. The GIL ensures there is only one thread running at any time. Using multiple processors with threads is impossible because only one thread can run at a time. This is a step towards removing that limitation.
October 3, 2023 at 7:18 AM
One notable change: you can use the same quotes inside a nested f-string:

>>> f"Quotes inside a nested f-string: {"a string"}"
'Quotes inside a nested f-string now: a string'

I'm not sure what to think of this yet...
October 3, 2023 at 7:17 AM